Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (121 - 123 of 3866)

Ticket Resolution Summary Owner Reporter
#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.

#3819 Fixed _FileCountLines help file precision to add Jpm Nine
Description

_FileCountLines should say in help file that it allows File handle AND Path and filename. It seems that the code was changed "recently" to use FileReadToArray.

Note: See TracQuery for help on using queries.