| Author |
Message |
Topic: LV_SortArrow - Apply sort arrows to your ListView |
Solar
Replies: 14
Views: 1956
|
Forum: Scripts & Functions Posted: Thu Jan 05, 2012 4:02 pm Subject: LV_SortArrow - Apply sort arrows to your ListView |
quick question, seems to change a centered column into left justified... probably shouldn't, right?
You're right. There was an error where the old column data is assigned. The original post is update ... |
Topic: StringSplit wont work in special case |
Solar
Replies: 8
Views: 215
|
Forum: Ask for Help Posted: Tue Jun 21, 2011 10:14 pm Subject: StringSplit wont work in special case |
When a function is entered by a subroutine thread, any references to dynamic variables made by that thread are treated as globals (including commands that create arrays).
This includes the StringSpli ... |
Topic: sript dir |
Solar
Replies: 4
Views: 107
|
Forum: Ask for Help Posted: Fri Jun 17, 2011 7:02 am Subject: sript dir |
| A_Script |
Topic: AutoHotkey v2 Alpha Release |
Solar
Replies: 710
Views: 57956
|
Forum: Scripts & Functions Posted: Wed Jun 15, 2011 11:19 pm Subject: AutoHotkey v2 Alpha Release |
v2 difference in the following example. Not sure whether it's a bug or a v2 limitation:
Loop 2
MsgBox % test()
test() {
static a := 1 ? ("a", b ... |
Topic: DllCall ("dwmapi.dll\...") |
Solar
Replies: 6
Views: 251
|
Forum: Ask for Help Posted: Wed Jun 15, 2011 8:46 pm Subject: DllCall ("dwmapi.dll\...") |
I recommend reading about enumerated types. I'm sure you'll figure it out.  |
Topic: DllCall ("dwmapi.dll\...") |
Solar
Replies: 6
Views: 251
|
Forum: Ask for Help Posted: Wed Jun 15, 2011 7:53 pm Subject: DllCall ("dwmapi.dll\...") |
I've no idea how to call that DWMFLIP3D_EXCLUDEBELOW
That's an enumeration. Here's a list of the DWM functions: http://msdn.microsoft.com/en-us/library/aa969527.aspx |
Topic: Method of determining user log in time |
Solar
Replies: 59
Views: 1677
|
Forum: Ask for Help Posted: Wed Jun 15, 2011 7:49 pm Subject: Method of determining user log in time |
| I found this: http://www.ibt.ku.dk/jesper/UserSes/ |
Topic: WinSet, Transparent fails on AHK GUI -caption |
Solar
Replies: 5
Views: 434
|
Forum: Ask for Help Posted: Fri Jun 10, 2011 5:46 pm Subject: WinSet, Transparent fails on AHK GUI -caption |
still curious why the DllCalls work though, when WinSet doesnt
It's simply because the WS_EX_LAYERED ExStyle isn't set. Try this:
Gui, -Caption +e0x80000 +LastFound
hwnd := WinExist() ... |
Topic: Why do some hotkeys always use the keyboard hook? |
Solar
Replies: 10
Views: 390
|
Forum: Ask for Help Posted: Fri Jun 10, 2011 3:42 pm Subject: Why do some hotkeys always use the keyboard hook? |
I was in another thread some months ago and we "discovered" that hotkey F12 "triggered" the use of k-hook.
But nobody had an answer why.
The F12 key is reserved for use by the d ... |
Topic: WinSet, Transparent fails on AHK GUI -caption |
Solar
Replies: 5
Views: 434
|
Forum: Ask for Help Posted: Fri Jun 10, 2011 1:26 pm Subject: WinSet, Transparent fails on AHK GUI -caption |
It's documented:
Known Limitations for Transparent and TransColor:
They have no effect on a window that lacks a caption (title bar) and lacks the always-on-top property. For GUI windows, this can ... |
Topic: determine if command line param is numeric? |
Solar
Replies: 2
Views: 116
|
Forum: Ask for Help Posted: Thu Jun 09, 2011 9:22 pm Subject: determine if command line param is numeric? |
| [url=http://www.autohotkey.com/docs/commands/IfIs.htm]if var is type |
Topic: Win+p to make windows recognise second monitor |
Solar
Replies: 5
Views: 587
|
Forum: Ask for Help Posted: Thu Jun 09, 2011 8:30 am Subject: Win+p to make windows recognise second monitor |
This took a little while to write so I hope you appreciate the time I put into it. I can't test it because I don't have multiple monitors:
NumPut(VarSetCapacity(DISPLAY_DEVICE, A_IsUnicode ... |
Topic: DllCall -- > ERROR_INVALID_HANDLE |
Solar
Replies: 10
Views: 458
|
Forum: Ask for Help Posted: Tue Jun 07, 2011 7:24 pm Subject: DllCall -- > ERROR_INVALID_HANDLE |
| sowen123, you have many problems throughout your code. The biggest problem is that you're not understanding structures and how to use them in AHK. Take a look at this code and I think you will have a ... |
Topic: Calling functions from the Hotkey command |
Solar
Replies: 11
Views: 892
|
Forum: Wish List Posted: Tue Jun 07, 2011 5:43 pm Subject: Calling functions from the Hotkey command |
Backward compatibility has been broken for many things already.
Not many things. Just and ? characters in variable names and syntax validation. Which are both justified and very minor changes. I'm s ... |
Topic: Calling functions from the Hotkey command |
Solar
Replies: 11
Views: 892
|
Forum: Wish List Posted: Tue Jun 07, 2011 4:43 pm Subject: Calling functions from the Hotkey command |
Label names can contain brackets. Thus, there's no way to distinguish between label names and function names:
Hotkey, !a, MyFunction()
return
MyFunction():
MsgBox Oops, ... |
| |