| Author |
Message |
Topic: Win XP Menu Tweak |
guiKey
Replies: 3
Views: 542
|
Forum: Ask for Help Posted: Sat May 16, 2009 10:02 am Subject: Win XP Menu Tweak |
It's a really unpleasant annoyance.
When I select a submenu item in a context menu, the new menu expands on the left size instead of the default right size. Can't find any hint.
Thanks in advance fo ... |
Topic: Compile_AHK II - for those who compile! |
guiKey
Replies: 407
Views: 85009
|
Forum: Scripts & Functions Posted: Sun Mar 08, 2009 1:02 pm Subject: Compile_AHK II - for those who compile! |
Here's the file you requested:
* Set No_UPX option
FileDelete , C:\Users\Adm\AppData\Local\Temp\AutoHotkey\Compiler\Upx.exe
# Set No_UPX option successfully
* Create resource file:
... |
Topic: Compile_AHK II - for those who compile! |
guiKey
Replies: 407
Views: 85009
|
Forum: Scripts & Functions Posted: Sun Mar 08, 2009 5:35 am Subject: Error at line 0 |
Dear ladiko,
compiling with Compile_AHK I receive the "Succesfully compiled" message.
But when I try to run my compiled script, I obtain the following:
Error at line 0.
Line Text:
... |
Topic: _SQLite_GetTable and $iCharSize |
guiKey
Replies: 3
Views: 463
|
Forum: Ask for Help Posted: Tue Mar 03, 2009 9:40 pm Subject: _SQLite_GetTable and $iCharSize |
Thanks Frankie for your time.
As I said, function is _SQLite_GetTable, part of sqlite.ahk and $iCharSize is an optional parameter in it:
_SQLite_GetTable($hDB | -1 , $sSQL , ByRef $sResult , B ... |
Topic: _SQLite_GetTable and $iCharSize |
guiKey
Replies: 3
Views: 463
|
Forum: Ask for Help Posted: Tue Mar 03, 2009 12:54 pm Subject: _SQLite_GetTable and $iCharSize |
Passing function a value for $iCharSize greater than default (i.e. 4096), the following message occurs:
Error: This DllCall requires a prior VarSetCapacity. The program is now unstable and will ... |
Topic: Error at line 0 |
guiKey
Replies: 1
Views: 346
|
Forum: Ask for Help Posted: Fri Feb 27, 2009 4:53 pm Subject: Error at line 0 |
Compiling with Compile_AHK I receive the "Succesfully compiled" message.
But when I try to run my compiled script, I obtain the following:
Error at line 0.
Line Text:
Same script ... |
Topic: xpath v3 - read and write XML documents with XPath syntax |
guiKey
Replies: 416
Views: 78426
|
Forum: Scripts & Functions Posted: Sun Nov 25, 2007 12:05 pm Subject: xpath v3 - read and write XML documents with XPath syntax |
I'm sorry... bad copy/edit/paste. xml file looks like:
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<pwlist>
<pwentry>
<title>my ... |
Topic: xpath v3 - read and write XML documents with XPath syntax |
guiKey
Replies: 416
Views: 78426
|
Forum: Scripts & Functions Posted: Sun Nov 25, 2007 11:33 am Subject: It doesn't work |
Getting data out of a xml file structure like that:
<pwlist>
<pwentry>
<title>mytitle01</title>
<username>myuser01<username/>
<password/> ... |
Topic: Serious debug for StringSplit needed |
guiKey
Replies: 30
Views: 4527
|
Forum: Bug Reports Posted: Sat Feb 03, 2007 8:59 am Subject: Serious debug for StringSplit needed |
| It's not about variables scope. Talking about array processed locally inside f(x). Unbelievable for me too, but ListVars in certain cases gives blank values. Have you ever seen that? |
Topic: Serious debug for StringSplit needed |
guiKey
Replies: 30
Views: 4527
|
Forum: Bug Reports Posted: Sat Feb 03, 2007 7:13 am Subject: Serious debug for StringSplit needed |
Consider function f(x) containing a StringSplit command.
Briefly, calling f(x) from different points in the script, StringSplit gives different results. When StringSplit doesn't work, arrays are left ... |
Topic: Mistery of the ESC key |
guiKey
Replies: 3
Views: 660
|
Forum: Ask for Help Posted: Wed Jan 24, 2007 2:15 pm Subject: Mistery of the ESC key |
Consider this simple script:
Menu, Tray, NoStandard
Menu, Tray, DeleteAll
Menu, Tray, Add, Show gui, GUISHOW
Menu, Tray, Add, Exit, EXIT
Gui, Add, Edit, R4 w200, Sample text
RControl:& ... |
Topic: Variable scope |
guiKey
Replies: 5
Views: 822
|
Forum: Wish List Posted: Thu Jan 04, 2007 10:25 pm Subject: Variable scope |
To refer to an existing global variable inside a function (or create a new one), declare the variable as global prior to using it.
(from AutoHotkey Help)
Can anyone just notice any difference? |
Topic: Variable scope |
guiKey
Replies: 5
Views: 822
|
Forum: Wish List Posted: Thu Jan 04, 2007 8:23 pm Subject: Variable scope |
If you declare a variable at the start of your script and outside any functions it exists in the Global scope and can be read or changed from anywhere in the script.
If you declare a variable inside ... |
| |