Search found 17158 matches

by boiler
09 Mar 2015, 14:23
Forum: Ask for Help (v1)
Topic: Stacked picture control visibility (send to back/front)
Replies: 5
Views: 2253

Re: Stacked picture control visibility (send to back/front)

I'm not sure if it works with pictures, but I believe with controls in general, when you use the GuiControl command, that control will appear in front. So GuiControl, Show, ControlName would act sort of like "bring to front", I believe. I don't know of a way to accomplish "send to back" other than t...
by boiler
09 Mar 2015, 08:30
Forum: Ask for Help (v1)
Topic: Alert if webpage is down, but website requires login
Replies: 22
Views: 9431

Re: Alert if webpage is down, but website requires login

Sorry to hear that you were sick for so long. That time of year, I guess. OK, so if the next thing is clicking on the link for the next page, you will need to identify that element either by tag or ID, or something like that, using the methods from before. You might want to try iWB2 Learner to quick...
by boiler
08 Mar 2015, 14:59
Forum: Ask for Help (v1)
Topic: Stealthily get cmd output without temp files or clipboard
Replies: 26
Views: 18279

Re: Stealthily get cmd output without temp files or clipboar

I'm using SKAN's version of StdOutToVar() from here: http://www.autohotkey.com/board/topic/96903-simplified-versions-of-seans-stdouttovar/ I am also having trouble with special characters. But it's not because the GUI can't display them. I know this because when I send the output of my query to a fi...
by boiler
08 Mar 2015, 12:43
Forum: Ask for Help (v1)
Topic: QuickAHK
Replies: 2
Views: 1087

Re: QuickAHK

Looks nice. If it worked for Unicode, I would use it.

Have you seen this? It doesn't have all the features of QuickAHK.
http://ahkscript.org/boards/viewtopic.php?f=6&t=6113
by boiler
08 Mar 2015, 12:10
Forum: Ask for Help (v1)
Topic: How do I insert number counter 01 02 03...
Replies: 9
Views: 3981

Re: How do I insert number counter 01 02 03...

There isn't a command that will automatically insert a counter (insert into what, by the way?). You need code to display and update the counter based on whatever it is being counted. If it is supposed to look like the counter at the bottom of the Total Commander website you would need images for the...
by boiler
08 Mar 2015, 01:20
Forum: Scripts and Functions (v1)
Topic: [Func] ADOSQL - wraps ADO for executing SQL queries (AHK-L)
Replies: 43
Views: 96604

Re: [Func] ADOSQL - wraps ADO for executing SQL queries (AHK

Once I determine the connection string that works for me, would it also work for anyone else using the same RDMS brand on their machine? The script would know the user ID, password, and a database name for the database it is trying to access. Specifically, I am using PostgreSQL, as will all other us...
by boiler
07 Mar 2015, 08:33
Forum: Ask for Help (v1)
Topic: GUI relate dynamically created button with edit control
Replies: 9
Views: 3910

Re: GUI relate dynamically created button with edit control

You can record the window position and restore it to that position after re-creating it.
by boiler
06 Mar 2015, 16:42
Forum: Ask for Help (v1)
Topic: Find all words
Replies: 6
Views: 2813

Re: Find all words

I assume I would dump the contents of the folder into a variable and use that as the haystack and use stringsplit to put the search words into an array and use those as the needle. You can't use the entire contents of the folder as the haystack because then it would just return true or false based ...
by boiler
05 Mar 2015, 20:02
Forum: Ask for Help (v1)
Topic: Find all words
Replies: 6
Views: 2813

Re: Find all words

SearchWords := ["red", "yellow", "blue", "orange", "green", "purple"] Favorite := "My favorite colors are red, yellow, and blue." Cars := "The car comes in blue, black, red, orange, yellow, purple, and green." MsgBox, % "The 'favorite' sentence " . (FindAllWords(Favorite, SearchWords) ? " contains"...
by boiler
04 Mar 2015, 05:42
Forum: Ask for Help (v1)
Topic: Script running in background window
Replies: 2
Views: 5768

Re: Script running in background window

What is the tab supposed to do in you window? Is it perhaps moving focus to the chat box?
by boiler
04 Mar 2015, 05:15
Forum: Ask for Help (v1)
Topic: Problem with classes Topic is solved
Replies: 7
Views: 1856

Re: Problem with classes Topic is solved

Guest897: There is no reason to use MsgBox in your call since the class already has the MsgBox command. And since the function isn't returning anything, your MsgBox command that is outside of the class shows empty.
by boiler
04 Mar 2015, 05:10
Forum: Ask for Help (v1)
Topic: Problem with classes Topic is solved
Replies: 7
Views: 1856

Re: Problem with classes Topic is solved

HotKeyIt: Seems like your second option is correct for his intention. He's not realizing that the mistake is calling the class function using MsgBox when he really should just be calling the class function alone.
by boiler
03 Mar 2015, 07:19
Forum: Ask for Help (v1)
Topic: AHK script needs to be activated 2x
Replies: 14
Views: 3087

Re: AHK script needs to be activated 2x

I have now added the #Persistent to the top of the script, even though it is not supposed to work if there is a hotkey in the script. The documentation doesn't say it won't work if you have hotkeys. It just isn't needed because a script with hotkeys is automatically made persistent. I'm just pointi...
by boiler
02 Mar 2015, 13:59
Forum: Ask for Help (v1)
Topic: repeat a keystroke
Replies: 1
Views: 845

Re: repeat a keystroke

by boiler
01 Mar 2015, 21:56
Forum: Scripts and Functions (v1)
Topic: SciTE4AutoHotkey extension - Count occurrences of word
Replies: 50
Views: 18683

Re: SciTE4AutoHotkey v3.0.06.01 [Updated October 12 2014]

Thanks, lexikos. Yes, it's fine with me for someone to move my posts.
by boiler
28 Feb 2015, 19:10
Forum: Scripts and Functions (v1)
Topic: SciTE4AutoHotkey extension - Count occurrences of word
Replies: 50
Views: 18683

Re: SciTE4AutoHotkey v3.0.06.01 [Updated October 12 2014]

OK, this is my last suggested additional feature to haichen's extension for counting occurrences. :D This allows you to toggle whether it finds words by matching case or not and as whole words or not. The status bar indicates which mode it's in. You toggle it from the Tools menu or with hotkeys (Ctr...
by boiler
28 Feb 2015, 17:03
Forum: Scripts and Functions (v1)
Topic: InputBox Creator
Replies: 14
Views: 7185

Re: InputBox Creator

Thanks. Interesting suggestion. As it works now, manually resizing the box which then automatically gets captured in the x and y values is much, much faster and easier than trial-and-error iterations of changing the values and running your script to find out. There would be a couple issues with impl...
by boiler
27 Feb 2015, 04:50
Forum: Scripts and Functions (v1)
Topic: SciTE4AutoHotkey extension - Count occurrences of word
Replies: 50
Views: 18683

Re: SciTE4AutoHotkey v3.0.06.01 [Updated October 12 2014]

One other thing I tried to do but abandoned was to be able to toggle whether it was case sensitive with a hotkey. I was able get Lua to run my function at the press of the key, but I wanted the status bar to reflect my change right when I pressed the key (from [ ] Match case to [X] Match case ). It ...
by boiler
27 Feb 2015, 04:37
Forum: Scripts and Functions (v1)
Topic: SciTE4AutoHotkey extension - Count occurrences of word
Replies: 50
Views: 18683

Re: SciTE4AutoHotkey v3.0.06.01 [Updated October 12 2014]

If I change the color in extension.properties file I get no change. Any idea? You probably don't have the latest version of the lua file. If you download and install haichen's latest .s4x file, it should work. I just did, and it works great. It's much better with the color in the properties file be...
by boiler
26 Feb 2015, 20:55
Forum: Ask for Help (v1)
Topic: Progress display lag
Replies: 2
Views: 1093

Re: Progress display lag

Ah, that makes a lot of sense. Thanks very much for the insight. I agree that my work-around isn't ideal, which is why I was hoping there was another way. I realize I could just close it without the bar reaching 100%, but I think that could be disconcerting to the intended users while they would not...

Go to advanced search