AutoHotkey Community

It is currently May 25th, 2012, 3:03 pm

All times are UTC [ DST ]




Post new topic Reply to topic  [ 816 posts ]  Go to page Previous  1 ... 35, 36, 37, 38, 39, 40, 41 ... 55  Next
Author Message
 Post subject:
PostPosted: June 21st, 2007, 3:09 am 
hi, i have a quick question about putting an image inside a program
when i start the program, it will show an image "SmartGUI Creator"
how do u do that?
i checked through ur script, i didnt find any Hex codes, or website link
i have been searched through the forum, and most people either have that picture file separate in the folder or using hex


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: June 22nd, 2007, 5:30 am 
Offline

Joined: March 28th, 2004, 3:53 pm
Posts: 1868
i FileInstall the image to temp folder. simple.

_________________
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject: newbie question
PostPosted: July 5th, 2007, 4:52 am 
Offline

Joined: July 5th, 2007, 4:48 am
Posts: 1
I have a question, possible dumb one, to ask. I have my own C programs doing data analysis with different parameters. I am using my over 20 year old knowledge: straightforward C programming in one file. I compile programs multiple times with different parameters or use DOS console to input parameters. I now need to share some programs with my colleagues and want to have GUI. I searched webs for an easier way to do this and finally reached to this forum, although I am not sure whether SGUI is the right one yet.

Again, what I need is GUI where I can input some parameters and transfer them to my program. It seems I can do something like

ButtonOK:
Run, MyProgram.exe
Return

But, how would I make MyProgram.exe recognize parameters I set up in the SGUI? If this is not possible, any other suggestions would be greatly appreciated.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: July 5th, 2007, 5:53 am 
Offline

Joined: March 28th, 2004, 3:53 pm
Posts: 1868
this is how you can do it

Code:
Gui, Add, Edit, x66 y17 w250 h20 vParam,
Gui, Add, Text, x6 y17 w60 h20 , Param
Gui, Add, Button, x106 y47 w100 h20 , Ok
; Generated using SmartGUI Creator 4.0
Gui, Show, x165 y91 h85 w328, New GUI Window
Return

GuiClose:
ExitApp

ButtonOk:
Gui, Submit
Run, myprogram.exe %param%
Return



go through ahk help file... its easy.

_________________
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject: Recording mouse scroll
PostPosted: July 10th, 2007, 7:39 am 
Offline

Joined: June 28th, 2007, 12:56 pm
Posts: 1
Hi All,
I know how to record mouse clicks. But any body know how to record the mouse scroll :( . I need to automate testing. So if any body know please let me know.

Regrads
Prabhu


Report this post
Top
 Profile  
Reply with quote  
PostPosted: July 17th, 2007, 3:39 pm 
Offline

Joined: May 17th, 2007, 12:07 pm
Posts: 1004
Location: Germany - Deutschland
Hallo Rajat,
will there ever be a newer version of Smartgui-Creator?


Last edited by aaffe on September 11th, 2007, 12:34 pm, edited 1 time in total.

Report this post
Top
 Profile  
Reply with quote  
PostPosted: July 17th, 2007, 9:44 pm 
Offline

Joined: March 28th, 2004, 3:53 pm
Posts: 1868
aaffe wrote:
Hallo Rajat,
will there ever be a newer version of Smartgui-Creator?

though i'd made plans to work on it, it seems a bit unlikely now that the Lil'Builder project is coming up nicely.

_________________
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 15th, 2007, 6:26 pm 
Can you add TreeView ?


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: August 17th, 2007, 12:00 am 
Offline

Joined: July 15th, 2007, 1:43 am
Posts: 1320
There is tree view...Click here for tree view.

_________________
Religion is false. >_>


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: September 2nd, 2007, 8:07 pm 
Offline

Joined: June 16th, 2007, 3:23 am
Posts: 280
It could be inproved by being able to create Radio Group.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: September 2nd, 2007, 9:38 pm 
Offline

Joined: November 2nd, 2004, 2:43 pm
Posts: 1019
Location: London, UK
You already can, if you add more than one radio button it will automatically create a radio group.

If you then add another control then start adding more radio buttons it will start a new group.

_________________
Steve F AKA Superfraggle

http://r.yuwie.com/superfraggle


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: September 3rd, 2007, 9:18 pm 
Offline

Joined: June 16th, 2007, 3:23 am
Posts: 280
Would be good to have Gui,Menu posible to create with your software.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: September 4th, 2007, 12:38 am 
Offline

Joined: July 15th, 2007, 1:43 am
Posts: 1320
I can make you a program to make a menu. Gimme like 20 mins.

_________________
Religion is false. >_>


Report this post
Top
 Profile  
Reply with quote  
 Post subject: Smart GUI Creater
PostPosted: September 5th, 2007, 4:31 pm 
i am getting this response on trying to download
This request is blocked by the SonicWALL Gateway Anti-Virus Service. Name: Agent.194073 (Trojan)


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: September 5th, 2007, 7:58 pm 
Offline
User avatar

Joined: August 30th, 2005, 8:43 pm
Posts: 8657
Location: Salem, MA
disable your antivirus for this one.

Please read to the threads linked here:
http://www.autohotkey.com/forum/viewtop ... 027#140027
(there is one post in that thread about viruses).

_________________
Image
(Common Answers) - New Tutorials Forum - Humongous FAQ


Report this post
Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 816 posts ]  Go to page Previous  1 ... 35, 36, 37, 38, 39, 40, 41 ... 55  Next

All times are UTC [ DST ]


Who is online

Users browsing this forum: Google Feedfetcher, JamixZol, Relayer, ZeLen1y and 33 guests


You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Powered by phpBB® Forum Software © phpBB Group