Custom Query
Results (79 - 81 of 3827)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#3822 | Completed | Helpfile for MsgBox: Comment for return values TRY AGAIN and CONTINUE is missing | Melba23 | water |
Description |
There is a footnote marker for the return values TRY AGAIN and CONTINUE but the footmark itself is missing. According to this post https://www.autoitscript.com/forum/topic/36786-msgbox-on-button-click-continue-script/ it should be something like this: "Try Again" and "Continue" only work on Windows 2000/XP and above |
|||
#3821 | Fixed | _WinAPI_OemToChar should be forced to ASCII | Jpm | Nine |
Description |
As per this thread : https://www.autoitscript.com/forum/topic/205736-solved-how-to-write-special-characters-to-scite-editor-moved/ Under certain conditions, the API switches to Unicode causing the script to crash. By forcing the function to use ASCII characters, the issue was solved. The revised function should look like this : Func _WinAPI_OemToChar($sStr) Local $aRet = DllCall('user32.dll', 'bool', 'OemToCharA', 'str', $sStr, 'str', '') If @error Or Not $aRet[0] Then Return SetError(@error + 10, @extended, '') Return $aRet[2] EndFunc ;==>_WinAPI_OemToChar |
|||
#3820 | Works For Me | ProgressOn() - move feature | mLipok | |
Description |
Please add feature which give enduser the ability to move the progress window. |