Как изменить цвет текста у элемента GUICtrlCreateCheckbox, что не делаю он всегда черный :wacko:
Код:
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 125, 48, 192, 124)
GUISetBkColor(0x808000)
$Checkbox1 = GUICtrlCreateCheckbox("Цвет текста", 16, 16, 97, 17)
GUICtrlSetColor(-1, 0xFF0000);красный
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd