hallo leute hab mal ne frage
wisst ihr wie ich mehrere GUICtrlCreateRadio auswählen kann zb ich will einmal wmplayer auswählen dann msnmsgr xfire und so weiter und am ende nur noch auf beenden drücken tu und es werden dann die ausgewählten GUICtrlCreateRadio geschlossen
[autoit]#include <GUIConstants.au3>
[/autoit][autoit][/autoit][autoit]#Region ### START Koda GUI section ### Form=
[/autoit][autoit][/autoit][autoit][/autoit][autoit]$Form1 = GUICreate("Form1", 216, 472, 367, 305)
$Radio1 = GUICtrlCreateRadio("Windows Media Player", 16, 24, 137, 17)
processClose("wmplayer.exe")
$Radio2 = GUICtrlCreateRadio("MSN Messenger", 16, 48, 113, 17)
processClose("msnmsgr.exe")
$Radio3 = GUICtrlCreateRadio("ICQ", 16, 72, 113, 17)
processClose("ICQ.exe")
$Radio4 = GUICtrlCreateRadio("Mozilla Firefox", 16, 96, 113, 17)
processClose("firefox.exe")
$Radio5 = GUICtrlCreateRadio("Internet Explorer", 16, 120, 113, 17)
processClose("iexplore.exe")
$Radio6 = GUICtrlCreateRadio("AutoIT", 16, 144, 113, 17)
processClose("AutoIT3.exe")
$Radio7 = GUICtrlCreateRadio("FL Studio 8", 16, 168, 113, 17)
processClose("FL.exe")
$Radio8 = GUICtrlCreateRadio("X Fire", 16, 192, 113, 17)
processClose("Xfire.exe")
$Radio9 = GUICtrlCreateRadio("Sidebar", 16, 216, 113, 17)
ProcessClose("sidebar.exe")
$Radio10 = GUICtrlCreateRadio("HOTKEYS", 16, 240, 113, 17)
processClose("HotKeys.exe")
$Radio11 = GUICtrlCreateRadio("Radio11", 16, 264, 113, 17)
$Radio12 = GUICtrlCreateRadio("Radio12", 16, 288, 113, 17)
$Radio13 = GUICtrlCreateRadio("Radio13", 16, 312, 113, 17)
$Radio14 = GUICtrlCreateRadio("Radio14", 16, 336, 113, 17)
$Radio15 = GUICtrlCreateRadio("Alles Beenden", 64, 408, 113, 17)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd