Custom Query
Results (157 - 159 of 3883)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#633 | No Bug | ComboBox doesn't open list of entries at Win2k, XP is working ok | jdoering@… | |
Description |
In Win2k if you click on the "down" arrow besides the combo box to open the list of entries, the list doesn't open. With cursor keys the different list entries can be selected in the single line shown of the box. Same combo box in Win XP is working fine. |
|||
#634 | No Bug | Increased activtity on mouse move | scottrade@… | |
Description |
There is a increased activity when you move your mouse. The mouse doesn't have to be over the window. $GUI = GUICreate("The Matrix", 640, 480, -1, -1) GUISetCursor(16, 1, $GUI) GUISetBkColor(0x000000) GUICtrlSetDefColor(0x008000, $GUI) GUISetFont(9, 500, 0, "Courier New",$GUI) Global $Char[1568] $Num = 0 For $a = 0 To 48 For $b = 0 To 31 $Char[$Num] = GUICtrlCreateLabel("", $a * 13, $b * 15, 13, 15, 1) $Num = $Num + 1 Next Next GUISetState(@SW_SHOW) While 1 GUICtrlSetData($Char[Random(0, 1568)], Chr(Random(32, 255))) If GUIGetMsg() = -3 Then Exit WEnd |
|||
#636 | No Bug | StdoutRead function seems to now miss data on public and beta releases | fill_hard@… | |
Description |
I updated to the latest Public (3.2.12.1) and found my script no longer worked. On debuging found that StdoutRead failed to return all of the data, it seems to miss the last line. Here is my test script. #include <Constants.au3> $STDOUTData = "" $Cipher = Run (@SystemDir & "\cipher " & """" & @MyDocumentsDir & """", @SystemDir, @SW_HIDE, $STDERR_CHILD + $STDOUT_CHILD) While 1
Wend MsgBox (0, "STDOUT Read Data:", $STDOUTData) On versions before the Stdoutread function was changed, you get..
U My Documents On the new versions you only get...
|