| Author |
Message |
Topic: :: SmartGUI Creator :: |
JamesVan
Replies: 581
Views: 126096
|
Forum: Scripts & Functions Posted: Sat Feb 23, 2008 2:33 pm Subject: :: SmartGUI Creator :: |
| Rajat, thanks for this great tool! However, I keep getting messages that the keyboard or mouse hook could not be activated. Can this be fixed? |
Topic: Order of multiple GUI's |
JamesVan
Replies: 2
Views: 144
|
Forum: Ask for Help Posted: Wed Feb 20, 2008 3:43 am Subject: Order of multiple GUI's |
| I've read alot of the posts on using multiple GUI's and I'm still trying to understand the concept of using different GUI's out of order. I have a complex script which currently has 4 GUI's. I want ... |
Topic: Need help with Not Equal function |
JamesVan
Replies: 2
Views: 144
|
Forum: Ask for Help Posted: Fri Feb 01, 2008 3:20 am Subject: Need help with Not Equal function |
| I have a quirky problem I just can't seem to solve. I have a program within which has a button which allows users to switch projects by going to another program to select the project, then return to ... |
Topic: Using StringReplace to remove parentheses |
JamesVan
Replies: 1
Views: 138
|
Forum: Ask for Help Posted: Fri Dec 21, 2007 10:42 pm Subject: Using StringReplace to remove parentheses |
| Hi again. I'm trying to remove parentheses from a string I'm reading from an environment variable. Essentially, I'm pulling a dynaminc project name, but one project name happens to have open and clo ... |
Topic: Using ProgramFiles variable in Windows XP 64 |
JamesVan
Replies: 4
Views: 302
|
Forum: Ask for Help Posted: Fri Dec 21, 2007 10:32 pm Subject: Using ProgramFiles variable in Windows XP 64 |
| Figured it out. In Windows XP64, if you run SET in a DOS prompt you will see the variable "ProgramFiles" as well as a new one - "ProgramFiles(x86)". This led me to believe that t ... |
Topic: Using ProgramFiles variable in Windows XP 64 |
JamesVan
Replies: 4
Views: 302
|
Forum: Ask for Help Posted: Fri Dec 21, 2007 3:58 pm Subject: Using ProgramFiles variable in Windows XP 64 |
Yes, I've tried a hard-coded search as in the example below, but it still can't find the files under "C:\Program Files (x86)". Could it be that the parentheses are confusing AutoHotKey?
... |
Topic: Using ProgramFiles variable in Windows XP 64 |
JamesVan
Replies: 4
Views: 302
|
Forum: Ask for Help Posted: Thu Dec 20, 2007 4:14 pm Subject: Using ProgramFiles variable in Windows XP 64 |
Has anyone tried to find and/or launch applications with AHK scripts running on Windows XP 64? For some reason, code I've written (example below) doesn't seem to find anything...
AppPath64 = %A_Pr ... |
Topic: DropDownList controlling a ListView |
JamesVan
Replies: 9
Views: 294
|
Forum: Ask for Help Posted: Wed Dec 19, 2007 2:55 pm Subject: DropDownList controlling a ListView |
PERFECT!! Thank you so much for your help, garry!
- James V |
Topic: DropDownList controlling a ListView |
JamesVan
Replies: 9
Views: 294
|
Forum: Ask for Help Posted: Tue Dec 18, 2007 9:09 pm Subject: DropDownList controlling a ListView |
| Alright, that works. Now I'm assuming that I'll have to use some kind of loop to process multiple selections, correct? |
Topic: DropDownList controlling a ListView |
JamesVan
Replies: 9
Views: 294
|
Forum: Ask for Help Posted: Tue Dec 18, 2007 7:36 pm Subject: DropDownList controlling a ListView |
Thanks again, garry.
I couldn't get the GoSub function to work in my code, but since you replied I looked at the ListView example in the Help file. This helped me get almost finished.
The last ... |
Topic: DropDownList controlling a ListView |
JamesVan
Replies: 9
Views: 294
|
Forum: Ask for Help Posted: Tue Dec 18, 2007 6:40 pm Subject: DropDownList controlling a ListView |
| Thanks garry. I see you moved "ExitApp" above the labels for the drop down choices which kept the window from closing; however, the list of files is not updating based on the choices in the ... |
Topic: DropDownList controlling a ListView |
JamesVan
Replies: 9
Views: 294
|
Forum: Ask for Help Posted: Tue Dec 18, 2007 5:49 pm Subject: DropDownList controlling a ListView |
Hi,
I'm trying to create a GUI in which selections in a dropdownlist would change what's displayed in a ListView. The goal is to find files matching a certain filter, but look in different folders ... |
Topic: Replace single quote in string variable |
JamesVan
Replies: 7
Views: 205
|
Forum: Ask for Help Posted: Mon Oct 01, 2007 6:32 pm Subject: Replace single quote in string variable |
EnvGet, PRJNAME, PROJECT_NAME
StringReplace, PRJNAME, PRJNAME, ',, All
;PRJNAME := RegExReplace(%PROJECT_NAME%, "'", "")
That did it! Thanks a million! |
Topic: Replace single quote in string variable |
JamesVan
Replies: 7
Views: 205
|
Forum: Ask for Help Posted: Mon Oct 01, 2007 6:23 pm Subject: Replace single quote in string variable |
No, I'm not using EnvGet. Should I get the variable with that first?
A sample value would be 'Training Project' (the single quotes included). |
Topic: Replace single quote in string variable |
JamesVan
Replies: 7
Views: 205
|
Forum: Ask for Help Posted: Mon Oct 01, 2007 4:35 pm Subject: Replace single quote in string variable |
| Thanks for the quick reply Skan, but that still gives me the same error. |
| |