| Author |
Message |
Topic: AutoHotkey vs. AutoIt? |
bold
Replies: 96
Views: 12610
|
Forum: General Chat Posted: Wed Jul 25, 2007 10:29 pm Subject: AutoHotkey vs. AutoIt? |
| 15 months actually. Is that a record? |
Topic: AutoHotkey vs. AutoIt? |
bold
Replies: 96
Views: 12610
|
Forum: General Chat Posted: Wed Jul 25, 2007 10:25 pm Subject: AutoHotkey vs. AutoIt? |
| Did someone really revive this thread? After 13 months? Sad..., he must be really unhappy. Wy don't we just try to cheer him up instead. |
Topic: Clock, battery, Mem load and CPU load display on screen |
bold
Replies: 5
Views: 7596
|
Forum: Scripts & Functions Posted: Sun Apr 15, 2007 1:49 am Subject: Clock, battery, Mem load and CPU load display on screen |
I'll take a look at it but I think the problem occurred even before I used the gettextsize function and updated the date like this
GuiControl, 1:,Date, %A_DDD% %A_DD%-%A_MM%-%A_YYYY% %a_hou ... |
Topic: Clock, battery, Mem load and CPU load display on screen |
bold
Replies: 5
Views: 7596
|
Forum: Scripts & Functions Posted: Sun Apr 15, 2007 1:37 am Subject: Clock, battery, Mem load and CPU load display on screen |
I'll take a look at it but I think the problem occurred even before I used the gettextsize function and updated the date like this
GuiControl, 1:,Date, %A_DDD% %A_DD%-%A_MM%-%A_YYYY% %a_hou ... |
Topic: Clock, battery, Mem load and CPU load display on screen |
bold
Replies: 5
Views: 7596
|
Forum: Scripts & Functions Posted: Sat Apr 14, 2007 5:48 pm Subject: Clock, battery, Mem load and CPU load display on screen |
Thanks for your comments.
This is why I said it is badly designed, and the 7 GUIs (I guess you didn't find any other solution, but it can be done with 1 GUI). However it works and looks superb (exc ... |
Topic: Clock, battery, Mem load and CPU load display on screen |
bold
Replies: 5
Views: 7596
|
Forum: Scripts & Functions Posted: Fri Apr 13, 2007 5:35 pm Subject: Clock, battery, Mem load and CPU load display on screen |
Displays a clock, ac-line indicator, batterylevel progressbar with text, mem load progressbar with text and cpuload progress bar with text.
I created this mostly from snippets and scripts found in ... |
Topic: Determine a "Next Run" day |
bold
Replies: 6
Views: 317
|
Forum: Ask for Help Posted: Fri Apr 13, 2007 12:41 pm Subject: Determine a "Next Run" day |
Check out EnvAdd in the manual. You can do date calculations like this snippet (from the manual):
var1 = ; Make it blank so that the below will use the current time instead.
var1 += 31, days
For ... |
Topic: hotkey CTRL + ALT + WIN (only) |
bold
Replies: 1
Views: 211
|
Forum: Ask for Help Posted: Wed Apr 11, 2007 10:18 am Subject: hotkey CTRL + ALT + WIN (only) |
I only have a left windows key on my notebook.
This works for me:
^!LWin:: MsgBox, Ctrl-Alt-Win
For both Win keys try:
^!LWin::
^!RWin::
MsgBox, Ctrl-Alt-Win
Retu ... |
Topic: Is there good syntax highlighting for Notepad++? |
bold
Replies: 1
Views: 257
|
Forum: Ask for Help Posted: Fri Apr 06, 2007 1:48 pm Subject: Is there good syntax highlighting for Notepad++? |
Did you try this one on the notepad++ site?
http://notepad-plus.sourceforge.net/commun/userDefinedLang/userDefineLang_autohotkey.xml |
Topic: Network Download/Upload Meter |
bold
Replies: 46
Views: 14191
|
Forum: Scripts & Functions Posted: Tue Apr 03, 2007 9:56 pm Subject: Network Download/Upload Meter |
It did not work for me also because I have all sorts of virtual network interfaces (for vpn and vmware).
I did the following:
Type the this command in a command prompt and check the output. The ... |
Topic: Using dllcall & pdh.dll to query performance counters? |
bold
Replies: 11
Views: 836
|
Forum: Ask for Help Posted: Sun Apr 01, 2007 11:06 pm Subject: Using dllcall & pdh.dll to query performance counters? |
Thanks for all your help. It seems to be working.
Cheers! |
Topic: AHK code explorer for PSPad |
bold
Replies: 14
Views: 1905
|
Forum: Scripts & Functions Posted: Fri Mar 30, 2007 5:26 pm Subject: AHK code explorer for PSPad |
Nice,
I changed the hotstring regex because not all hotstrings are found
;.. Find Hotstrings
FoundPos := RegExMatch(Line, ":[*?a-zA-Z0-9]*:([^\s: ... |
Topic: Using dllcall & pdh.dll to query performance counters? |
bold
Replies: 11
Views: 836
|
Forum: Ask for Help Posted: Fri Mar 30, 2007 5:05 pm Subject: Using dllcall & pdh.dll to query performance counters? |
Thanks, I tried it to no avail. I still get the same error.
I Also tried
pdhStatus := DllCall("pdh.dll\PdhOpenQuery", "Int", 0, "UInt", 0, "UIntP", ... |
Topic: Using dllcall & pdh.dll to query performance counters? |
bold
Replies: 11
Views: 836
|
Forum: Ask for Help Posted: Thu Mar 29, 2007 10:53 pm Subject: Using dllcall & pdh.dll to query performance counters? |
I found out that -1073738820 is actually 0xc0000bbc.
This means 0xC0000BBC (PDH_INVALID_HANDLE) The handle is not a valid PDH object.
Even when I open the query with
pdhStatus := DllCall ... |
Topic: Using dllcall & pdh.dll to query performance counters? |
bold
Replies: 11
Views: 836
|
Forum: Ask for Help Posted: Mon Mar 26, 2007 10:18 pm Subject: Using dllcall & pdh.dll to query performance counters? |
Hi,
I'm trying to query the windows performance counters with dllcall without any luck. The problem is that I do not know anything about the windows api.
I found the msdn pages here: http://msdn ... |
| |