Opened 2 years ago
Last modified 22 months ago
#3973 assigned Bug
GUICtrlSetColor does not work on GUICtrlCreateRadio — at Initial Version
| Reported by: | KaFu | Owned by: | |
|---|---|---|---|
| Milestone: | Component: | AutoIt | |
| Version: | 3.3.16.1 | Severity: | None |
| Keywords: | Cc: |
Description
GUICtrlSetColor does not work on GUICtrlCreateRadio for me.
#include <GUIConstantsEx.au3>
GUICreate("My GUI radio")
Local $idRadio1 = GUICtrlCreateRadio("Radio 1", 10, 10, 120, 20)
GUICtrlSetColor(-1, 0xffffff)
GUISetState(@SW_SHOW)
While 1
$idMsg = GUIGetMsg()
Select
Case $idMsg = $GUI_EVENT_CLOSE
ExitLoop
EndSelect
WEnd
Note: See
TracTickets for help on using
tickets.
