1.
AutoIt
#include <ButtonConstants.au3> #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> $Form1 = GUICreate("Form1", 615, 438, 192, 124) $Checkbox1 = GUICtrlCreateCheckbox("Test1", 24, 32, 81, 25) $Checkbox2 = GUICtrlCreateCheckbox("Test2", 24, 72, 81, 33) $Radio1 = GUICtrlCreateRadio("Test3", 192, 32, 81, 25) $Radio2 = GUICtrlCreateRadio("Test4", 192, 80, 57, 17) $Button1 = GUICtrlCreateButton("Button", 152, 288, 193, 25) GUISetState(@SW_SHOW) While 1 $msg = GUIGetMsg() Select Case $msg = $GUI_EVENT_CLOSE ExitLoop Case $msg = $Checkbox1 MsgBox( 0, "Test", "HHHH") EndSelect WEnd
Is it possible that the action used in $Checkbox1 will only work after the button is press?
When I'll check the checkbox, it will open a msgbox, but how can I do that if the checkbox is checked and the button is pressed then it will open the msgbox, but if the checkbox is unchecked then nothing will happen after pressing the button??
2.
How can I design the buttons,borders etc. without any manual skin?
3.
What is #AutoIt3Wrapper