Custom Query
Results (46 - 48 of 3841)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#3878 | Fixed | Tidy corrupts user defined include lines.. | Jos | wimhek11@… |
Description |
Tidy changes the #include lines pointing to own includes from #include <Process.au3> #include <C:\Users\wimhek\Documents\Projects\Includes\MyUdf.au3> #include <C:\Users\wimhek\Documents\Projects\Includes\ExtMsgBox.au3> #EndRegion INCLUDES to #include <Process.au3> #include <C : \Users\wimhek\Documents\Projects\Includes\MyUdf.au3> #include <C : \Users\wimhek\Documents\Projects\Includes\ExtMsgBox.au3> #EndRegion INCLUDES As you see 2 spaces are added. Following lines is the logging.
+>15:27:40 Starting AutoIt3Wrapper (21.316.1639.1) from:SciTE.exe (4.4.6.0) Keyboard:00020409 OS:WIN_10/2009 CPU:X64 OS:X64 Environment(Language:0413) CodePage:0 utf8.auto.check:4 +> SciTEDir => C:\Program Files (x86)\AutoIt3\SciTE UserDir => C:\Users\wimhek\AppData\Local\AutoIt v3\SciTE\AutoIt3Wrapper SCITE_USERHOME => C:\Users\wimhek\AppData\Local\AutoIt v3\SciTE
Documentation file:C:\Users\wimhek\Documents\Projects\GenAutoit\DocAutoit_tidy.txt
+>15:27:45 Tidy ended.rc:0 +>15:27:46 AutoIt3Wrapper Finished.
|
|||
#3877 | Fixed | $GUI_ONTOP hides the control when already on top | Jon | Nine |
Description |
Setting the button to $GUI_ONTOP makes it disappear : #include <GUIConstants.au3> Local $hGUI = GUICreate("Example", 300, 200, -1, -1, BitOR($WS_POPUP, $WS_BORDER)) GUISetBkColor(0xC0C0C0) Local $idLabel = GUICtrlCreateLabel("", 0, 0, 300, 200, Default, $GUI_WS_EX_PARENTDRAG) Local $idClose = GUICtrlCreateButton("Close", 210, 170, 85, 25) GUICtrlSetState(-1, $GUI_ONTOP) GUISetState() While True Switch GUIGetMsg() Case $GUI_EVENT_CLOSE, $idClose ExitLoop Case $idLabel ConsoleWrite("Label" & @CRLF) EndSwitch WEnd Giving focus ($GUI_FOCUS) to the button is a workaround, but when GUI has hundred controls it is hardly viable. |
|||
#3876 | Fixed | Hex Number Arithmetic is incorrect | Jon | Zvend |
Description |
The hex arithmetic in the newest version broke compared to previous versions. ;~ AutoIt v3.3.14.5 Const $OFFSET = -0x46 Local $pSomePointer = Ptr(0x3100000 + $OFFSET) ConsoleWrite("Pointer is: " & $pSomePointer & @CRLF) Output: Pointer is: 0x030FFFBA (Correct hex arithmetic) ;~ AutoIt v3.3.16.0 Const $OFFSET = -0x46 Local $pSomePointer = Ptr(0x3100000 + $OFFSET) ConsoleWrite("Pointer is: " & $pSomePointer & @CRLF) Output: Pointer is: 0x03100046 (Incorrect hex arithmetic) For more information see: https://www.autoitscript.com/forum/topic/207897-hex-number-arithmetic-is-incorrect-on-v33160/ |