Custom Query (3933 matches)
Results (100 - 102 of 3933)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #432 | No Bug | new version au3 always UPX compresses | ||
| Description |
The previous version of AutoIT permitted people to optionally UPX compress an exe...If the exe was NOT UPX compressed, people could use a third party compression program to compress the snot out of the autoit executable !!!! In addition, you state that your compression method is not secure...The third party compression scheme is difficult for hackers to crack...In addition, my program is now about 70000 bytes bigger and will not fit on one floppy disk which was the entire point and main selling feature of my program, i.e, that it fits on one floppy disk!!!!! If you could please give people the option of NOT UPX compressing the exe in the new autoit version, that might solve my problem! |
|||
| #4094 | Fixed | new function: _WinAPI_FindWindowEx | ||
| Description |
Please add _WinAPI_FindWindowEx() to WinAPISysWin.au3 Func _WinAPI_FindWindowEx($hParent, $sClass, $sTitle = "", $hAfter = 0) Local $aCall = DllCall('user32.dll', "hwnd", "FindWindowExW", "hwnd", $hParent, "hwnd", $hAfter, "wstr", $sClass, "wstr", $sTitle) If @error Then Return SetError(@error, @extended, 0) Return $aCall[0] EndFunc ;==>_WinAPI_FindWindowEx https://learn.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-findwindowexa https://learn.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-findwindowexw usage example: https://www.autoitscript.com/forum/topic/213699-how-can-i-determine-if-tab-item-is-visible-in-tab-control/#findComment-1552569 |
|||
| #866 | Rejected | new function FileGetDir( ) | ||
| Description |
Hi !
FileGetDir( "C:") ; get current directory of drive C: FileGetDir( "D:") ; get current directory of drive D: FileGetDir( "E:") ; get current directory of drive E: |
|||
