Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (10 - 12 of 3866)

1 2 3 4 5 6 7 8 9 10 11 12 13 14
Ticket Resolution Summary Owner Reporter
#11 Rejected WinWaitActive error WaitingUserInfo wooltown
Description

The following code doesn't give an error, it just waits eternally, the ")" after "Connected" is erratic, but it is accepted by AutoIT. AutoIT should complain about it.

If WinWaitActive("MEs Connected"),"",5) Then
	Run ("pstools\pskill.exe javaw.exe","",@SW_HIDE)
EndIf
#12 Rejected GuiCtrlSetData() not appending a single value if it already exists Jpm Bowmore
Description

This script demonstrates a bug in repeated calls to GUICtrlSetData() to add a single value to a list where that value already exists in the list. The value is not appended to the list unless there is a pipe character after the value.

#include <GUIConstants.au3>

GUICreate("My GUI")  ; will create a dialog box that when displayed is centered

$mylist1 = GUICtrlCreatelist ("", 10,10)
GUICtrlSetData($mylist1, "test")
GUICtrlSetData($mylist1, "test")
; only one entry apeers in list

$mylist2 = GUICtrlCreatelist ("", 10,200)
GUICtrlSetData($mylist2, "test")
GUICtrlSetData($mylist2, "test|")
; two entries apeer in list

GUISetState ()       ; will display an empty dialog box with a  control with focus on

; Run the GUI until the dialog is closed
While 1
    $msg = GUIGetMsg()
    
    If $msg = $GUI_EVENT_CLOSE Then ExitLoop
Wend
#13 Completed STD I/O functions supporting binary. Valik Valik
Description

From forum thread http://www.autoitscript.com/forum/index.php?showtopic=59867. Request is resonable.

1 2 3 4 5 6 7 8 9 10 11 12 13 14
Note: See TracQuery for help on using queries.