Search found 14 matches

by newtoahk
11 Feb 2020, 15:24
Forum: Suggestions on Documentation Improvements
Topic: missing functions in documentation list Topic is solved
Replies: 2
Views: 2354

missing functions in documentation list Topic is solved

Hello!
The OnExit() and OnClipboardChange() functions cannot be found on the page https://www.autohotkey.com/docs/Functions.htm#BuiltIn
(the page https://www.autohotkey.com/docs/commands/index.htm is ok.)
Thanks!

[Mod edit: Topic moved here from 'Bug Reports']

Sorry for the wrong topic.
by newtoahk
16 Nov 2018, 14:58
Forum: Bug Reports
Topic: the Transform statement
Replies: 0
Views: 1046

the Transform statement

Hello!

There is some bug in the return value of the statement:

Code: Select all

Transform,some_variable,HTML,őű
the returned HTML entity names (õû) are not correct. Maybe there are more ...

Thanks!
by newtoahk
08 Jun 2016, 18:56
Forum: Ask for Help (v1)
Topic: duplicating/copying variable after VarSetCapacity()
Replies: 3
Views: 995

Re: duplicating/copying variable after VarSetCapacity()

Thanks, yes one must use the OS'es copy memory function.
by newtoahk
06 Jun 2016, 12:08
Forum: Ask for Help (v1)
Topic: duplicating/copying variable after VarSetCapacity()
Replies: 3
Views: 995

duplicating/copying variable after VarSetCapacity()

Hello!

Is this a proper solution?
VarSetCapacity(xyz,1000,0)
doing some DllCall(...) with variable xyz
xyz_copy := xyz (xyz_copy is a byref parameter of a function)

Thanks
by newtoahk
03 Feb 2015, 07:56
Forum: Ask for Help (v1)
Topic: Using MsgWaitForMultipleObjects(Ex) properly
Replies: 2
Views: 1541

Using MsgWaitForMultipleObjects(Ex) properly

Hello!

How should be used the mentioned function if I don't want to block the script's normal behaviour (handling messages, timers, ...)?
Specifically the dwWakeMask parameter?

Thanks
by newtoahk
02 Feb 2015, 18:09
Forum: Bug Reports
Topic: tiny bug related to help file
Replies: 4
Views: 2028

Re: tiny bug related to help file

Thanks!
by newtoahk
31 Jan 2015, 09:41
Forum: Bug Reports
Topic: tiny bug related to help file
Replies: 4
Views: 2028

Re: tiny bug related to help file

The launched help file previously opened at the last used/saved position. Now it appears always at 200,0 with size 880x700. Maybe the build option "save size and position" was not checked/selected when it was (re)compiled.
by newtoahk
31 Jan 2015, 07:10
Forum: Bug Reports
Topic: tiny bug related to help file
Replies: 4
Views: 2028

tiny bug related to help file

The help file does not remember its position and size as of version 1.1.19.02.
by newtoahk
22 Dec 2014, 08:19
Forum: Ask for Help (v1)
Topic: Enumerating NTFS Alternate Data Streams in a file
Replies: 9
Views: 3322

Enumerating NTFS Alternate Data Streams in a file

Hello!

Is there any method to enumerate NTFS data streams in a file?
Something like this...
loop,d:\thisfile.ext:*.*:$DATA,0,0
{
; some code
}

Thanks
by newtoahk
09 Dec 2013, 18:06
Forum: Ask for Help (v1)
Topic: calling GuiControlGet from glabel procedure
Replies: 5
Views: 2321

Re: calling GuiControlGet from glabel procedure

I see! Thank you for the answer!
by newtoahk
09 Dec 2013, 17:24
Forum: Ask for Help (v1)
Topic: calling GuiControlGet from glabel procedure
Replies: 5
Views: 2321

Re: calling GuiControlGet from glabel procedure

Thank you very much! It works fine. Why isn't it necessary the AHK_ID keyword? The reference is a window handle after all.
by newtoahk
09 Dec 2013, 16:34
Forum: Ask for Help (v1)
Topic: calling GuiControlGet from glabel procedure
Replies: 5
Views: 2321

calling GuiControlGet from glabel procedure

Hello! Is this a bug or do I do something wrong? wctrlhwnd:="dummy value" gui,myname:new,,some title gui,add,edit,+HWNDwctrlhwnd,some text gui,add,button,Gjumpto,OK gui,show,w400 h300 return jumpto: guicontrolget,wcdata,%a_gui%:,AHK_ID %wctrlhwnd% msgbox data:[%wcdata%] errorlevel:[%errorlevel%] hwn...

Go to advanced search