Hi everybody
In AutoIt help file (3.3.16.1) we find the same example in 3 topics related to window subclassing. These 3 topics are :
_WinAPI_SetWindowSubclass _WinAPI_DefSubclassProc _WinAPI_RemoveWindowSubclass
(there is a 4th topic closely related, _WinAPI_GetWindowSubclass , but it doesn't show an example, no big deal)
We can't run these examples "as-is" because of the 1st line in the script, which generates a fatal error :
==> Error opening the file.:
#include <Extras\WMDebug.au3>
To solve this, I created a subfolder named Extras (under \Include) and copied in it the file "WMDebug.au3" found at this location :
..... \Examples\Helpfile\Extras\WMDebug.au3
Maybe this little issue could be fixed in a future release ?
Thanks in advance
Edit: another solution is to modify the path of the include file in the script, without creating any subfolder on disk :
; #include <Extras\WMDebug.au3>
#include <..\Examples\Helpfile\Extras\WMDebug.au3>