Custom Query (3921 matches)
Results (340 - 342 of 3921)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #1203 | No Bug | Windows 7 Ultimate Build 7600 + Tooltip = LAG! | ||
| Description |
Hi, I have been running Autoit v3.3.0.0 with a script that runs perfect on XP SP3. Then I installed Windows 7 Ultimate and my WoW drops framerates to 7fps!! So I began troubleshooting trying everything from turning off UAC to excluding AutoIt in DEP but nothing worked. So I began fiddling with the code, and commenting out ToolTip("- Stopped -" & @CRLF & "" & @CRLF & "F10 - Start" & @CRLF & "F9 - Quit",0,0) made it stop! :):) Please note that removing @CRLF had no effect what so ever. |
|||
| #1208 | No Bug | No colored flat Button possible | ||
| Description |
Either a flat button or a colored button is possible, not both. #include <ButtonConstants.au3>
Opt("GUIOnEventMode", 1)
GUICreate("Button-Bug", 200, 110)
GUISetOnEvent(-3, "_Exit")
GUICtrlCreateButton("Flat", 20, 20, 70, 20, $BS_FLAT)
GUICtrlSetBkColor(-1, 0xFF0000)
GUICtrlSetStyle(-1, $BS_FLAT)
GUICtrlSetOnEvent(-1, "_ChangeBkCol")
GUICtrlCreateButton("Standard", 110, 20, 70, 20)
GUICtrlSetOnEvent(-1, "_ChangeBkCol")
GUICtrlCreateButton("Flat", 20, 70, 70, 20, $BS_FLAT)
GUICtrlSetOnEvent(-1, "_MakeDefBkCol")
GUICtrlCreateButton("Standard", 110, 70, 70, 20)
GUICtrlSetOnEvent(-1, "_MakeDefBkCol")
GUISetState()
While 1
Sleep(100000)
WEnd
Func _ChangeBkCol()
GUICtrlSetBkColor(@GUI_CtrlId, 0x00FF00)
EndFunc
Func _MakeDefBkCol()
GUICtrlSetBkColor(@GUI_CtrlId, Default)
EndFunc
Func _Exit()
Exit
EndFunc
|
|||
| #1210 | No Bug | 'trac authentication not installed, refer to documentation' | ||
| Description |
your bug tracking program is not fully installed. I can't login. I only just figures out that I can set an email address using preferences, *after* submitting a feature request. |
|||
