Custom Query
Results (1 - 3 of 3875)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#8 | No Bug | loop bug | Jos | anonymous |
Description |
we cant have 2 loops at a time ? |
|||
#22 | No Bug | Send() doesn't work when trying to Alt+Printscreen | WaitingUserInfo | christian.blackburn@… |
Description |
Hi Gang, I'm able to Send("{PRINTSCREEN}") without problems, but Send("!{PRINTSCREEN}") fails to capture the current window whether I've compiled ANSI or Unicode. Can someone else test this out? Thanks, Christian Blackburn |
|||
#30 | No Bug | GUICtrlSetBkColor() bug with GUICtrlCreateLabel() and GUICreate with BitOR() | WaitingUserInfo | atomman |
Description |
With every combo of BitOR() i've tried, GUICtrlSetBkColor() fails. If BitOR() is removed, GUICtrlSetBkColor() works fine. Run the code as is, color won't change. Comment out L2 and uncomment L3, it works fine. Behavior is same with GUICtrlCreateGraphic() as well, maybe others. #include <GUIConstants.au3> $Win_SBS = GUICreate("SpeedBlog - Satellite", 556, 204, -1, -1, BitOR($WS_CLIPCHILDREN,$WS_POPUP)) ;$Win_SBS = GUICreate("SpeedBlog - Satellite", 556, 204, -1, -1) GUISetFont(8, 400, 0, "Arial") $Label1 = GUICtrlCreateLabel("", 193, 113, 8, 15) GUICtrlSetBkColor(-1, 0x00FF00) $Button1 = GUICtrlCreateButton("Button1", 292, 80, 75, 25, 0) GUISetState(@SW_SHOW) While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit Case $Button1 GUICtrlSetBkColor($Label1, 0xFF0000) EndSwitch WEnd |
Note: See TracQuery
for help on using queries.