Changes between Initial Version and Version 1 of Ticket #3809
- Timestamp:
- 03/05/21 10:33:33 (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #3809 – Description
initial v1 1 1 It is working fine under Win7. But with Win10, WinGetTitle returns blank when called with $hWnd while using _WinAPI_CreateWindowEx. If you replace $hWnd with actual title, it works. If you use "[CLASS:MyWindowClass]", it works. If you do a WinList(), it will appear in the list. 2 2 3 {{{ 3 {{{#!autoit lineno=1 4 4 #include <WinAPIRes.au3> 5 5 #include <WinAPISys.au3> … … 74 74 Return _WinAPI_DefWindowProcW( $hWnd, $iMsg, $wParam, $lParam ) 75 75 EndFunc 76 77 76 }}}