Custom Query
Results (340 - 342 of 3904)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #2058 | Rejected | WinWait, WinWaitActive and WinActive calls are waiting indefinitely irrespective of timeout. | Jon | Math |
| Description |
Few AutoItX functions are hanging when using in VS 2008(vb.net) IDE. Execution is not moving to the next line when it encounters the functions WinActive, WinWait, WinWaitActive. oAutoIt = CreateObject("AutoItX3.Control")
oAutoIt.WinWait("Title","",5)
oAutoIt.WinActivate("Title")
In the above snippet, execution hangs inside WinWait function and it is not proceeding to the next line. |
|||
| #2066 | Fixed | bad dllStructSetData return for int | Jon | Jpm |
| Description |
running the following script show a little discrepancy of a int64 return instead of an int32 Local $struct = DLLStructCreate("int")
$n=DllStructSetData($struct,1,1)
ConsoleWrite('@@ Debug(' & @ScriptLineNumber & ') : $n = ' & $n & " " & VarGettype($n) & @crlf & '>Error code: ' & @error & ' Extended code: 0x' & Hex( @extended) & @crlf) ;### Debug Console
$n=DLLStructGetData($struct,1)
ConsoleWrite('@@ Debug(' & @ScriptLineNumber & ') : $n = ' & $n & " " & VarGettype($n) & @crlf & '>Error code: ' & @error & ' Extended code: 0x' & Hex( @extended) & @crlf) ;### Debug Console
same under beta 23 Environment(Language:040C Keyboard:0000040C OS:WIN_7/Service Pack 1 CPU:X64 OS:X86) |
|||
| #2075 | Fixed | GUICtrlSetImage changes icon position on resizable window | Jon | ChrisN |
| Description |
When a window is resized & the icon control is moved from its original position, updating it with GUICtrlUpdateImage moves it to its original position again. #include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
$Form1 = GUICreate("Form1", 185, 139, 192, 148, BitOR($GUI_SS_DEFAULT_GUI,$WS_SIZEBOX,$WS_THICKFRAME))
$Icon1 = GUICtrlCreateIcon(@ScriptDir & "\default.ico", -1, 16, 88, 32, 32)
GUICtrlSetResizing(-1, $GUI_DOCKLEFT+$GUI_DOCKBOTTOM+$GUI_DOCKWIDTH+$GUI_DOCKHEIGHT)
GUISetState(@SW_SHOW)
AdlibRegister("updateicon")
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd
Func updateicon()
GUICtrlSetImage($Icon1, @ScriptDir & "\default.ico")
EndFunc
|
|||
