Custom Query (3933 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (187 - 189 of 3933)

Ticket Resolution Summary Owner Reporter
#3823 Fixed Helpfile: Language Reference - Variables: Section Arrays and Maps refers to function TableKeys Jpm water
Description

Helpfile: Language Reference - Variables: Section Arrays and Maps. "TableKeys" should be replaced with "MapKeys".

#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
Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.