Custom Query
Results (343 - 345 of 3904)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #2105 | Fixed | Odd behavior Hex() | Jon | anonymous |
| Description |
AutoIt 3.3.8.0 XP SP3 I have recompiled a script using latest AutoIt version. Some Hex() calls are behaving differently. Eg Using Hex after reading value from RegRead() Using Hex after reading value from DLLCall() Small example below. Thanks Steve $DecimalNumber = 1862402120 RegDelete("HKEY_LOCAL_MACHINE\SOFTWARE\AutoIt v3","deleteme") ; clean start ConsoleWrite("$DecimalNumber >" & $DecimalNumber & "<" & @LF) RegWrite("HKEY_LOCAL_MACHINE\SOFTWARE\AutoIt v3","deleteme","REG_DWORD",$DecimalNumber) $fromRegistry = RegRead("HKEY_LOCAL_MACHINE\SOFTWARE\AutoIt v3","deleteme") ; returns number as a decimal number ConsoleWrite("$fromRegistry >" & $fromRegistry & "<" & @LF) If $DecimalNumber = $fromRegistry Then
Else
EndIf ; now do some HEX functions on it ConsoleWrite("Hex($DecimalNumber) >" & Hex($DecimalNumber) & "<" & @LF) ConsoleWrite("Hex($fromRegistry) >" & Hex($fromRegistry) & "<" & @LF) |
|||
| #2152 | Fixed | X^2 Not Working in Hex() | Jon | tobgle@… |
| Description |
In 3.3.8.1 This returns 000000, but it should return FFFFFF Hex(255*2562+255*256+255, 6) |
|||
| #2167 | Fixed | $WS_EX_LAYOUTRTL and GUICtrlCreateMenu causes bug | Jon | Emiel Wieldraaijer |
| Description |
When using $WS_EX_LAYOUTRTL in combination with GUICtrlCreateMenu between GUICreate and GUISetState The GUI isn't displayed correct. When placing GUICtrlCreateMenu at the end of the GUI Creation just before GUISetState the GUI is displayed correct but the menuitems aren't working Starting with GUICreate followed by GUISetState and placing the rest of the GUI after GUISetState everything works perfect. But this will mean all examples in the help files must be changed. Further I believe there is a bigger problem. I use GUICtrlSetState($TAB, $GUI_SHOW) a lot .. and with version 3.3.8.1 it often occurs other controls of other tabs are displayed on the Tab i show. I can prevent this by placing the GUICtrlSetState($TAB, $GUI_SHOW) as last option in the loop.. In version 3.3.6.1 this problem did not exist. http://www.autoitscript.com/forum/topic/139094-ws-ex-layoutrtl-bug-or-no-bug/ Thnx Best regards, Emiel Wieldraaijer |
|||
