Custom Query (3931 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (433 - 435 of 3931)

Ticket Resolution Summary Owner Reporter
#3215 Fixed GUICtrlCreateUpdown looses GUICtrlSetResizing value on GUICtrlSetState change Jon argumentum
Description

a short test script that reproduces the problem is at:

https://www.autoitscript.com/forum/topic/181446-guictrlcreateupdown-gui_dockright-misbehaved/?do=findComment&comment=1303026

GUICtrlCreateUpdown moves, along with the attached input control, to its creation position, upon GUICtrlSetState.

Resizing the GUI restores proper positioning.

#3230 Completed _WideCharToMultiByte fails with double-byte codepages Jon jchd18
Description

The structure in _WideCharToMultiByte (WinAPI.AU3) needs to use the byte type instead of char, else the result is wrong when the user is requesting output in double-byte codepage (Korean, Japanese, and several other Asian codepages) AND the current default system codepage is also double-byte.

Follows from thread https://www.autoitscript.com/forum/topic/182255-unicode-stringtobinary-for-unsupported-language/?page=1 where both working and failing examples are available.

#3232 Fixed Issue when parsing scientific notation literals Jon jchd18
Description

The runtime parser sometimes fails on reals in scientific notation immediately followed by some operators or silently gives a wrong result in some cases.

$x = 1e2 + 10
ConsoleWrite($x & @CRLF)	; 110 OK
$x = (1e2)+10
ConsoleWrite($x & @CRLF)	; 110 OK

$x = 1e2+10
ConsoleWrite($x & @CRLF)	; 100 Wrong!
$x = 1e2-10
ConsoleWrite($x & @CRLF)	; 100 Wrong!
$x = 1e2^10
ConsoleWrite($x & @CRLF)	; 1e+020 Wrong!
$x = 1e2+ 10			; Unable to parse line.
ConsoleWrite($x & @CRLF)
$x = 1e2- 10			; Unable to parse line.
ConsoleWrite($x & @CRLF)
$x = 1e2^ 10			; 1e+020 Wrong!
ConsoleWrite($x & @CRLF)

+, - and ̂ are the only arithmetic operators affected: * and / seem to work correctly. (It was fun composing the exponentiation sign here!)

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.