Code Monkey wrote:
Chavez wrote:
It sure would help if you provided the code you were using, it's tough to debug using telekinetic powers.
I don't have any real code, (as I stated before I'm new) I deleted everything after it didn't work. I don't recall asking for help with a program that will run multiple things at once, I wanted to be able to choose. Can any one else here please help me out?
If you're looking for help, a little politeness is probably a good idea. However, while I'm no whiz at GUI's, are you using SmartGUI to create it? Once you've created the GUI, you'll need to edit in the variables. If you check the help file (Both AHK And SmartGUI) - paying particular attention to how you need to use variables. There are working examples.
Here's a freebie though.
Code:
Gui, Add, ListBox, vMyListBox gMyListBox w640 r10
This is adding a listbox control, that will save the contents to MyListBox (The v in front of it declares that it's a variable), the gMyListBox means that when a selection is made it will go to the labe MyListBox (Which is represented as MyListBox: <Code>) and w640 and r10 are size/placements.
All variables used in a GUI need to be global, so make sure you declare them first as
global MyListBox