Du kannst zb auch einfach
GUICtrlSetState($Radio1, $GUI_CHECKED) machen, um automatisch eines schon anzuwählen .
Andernfalls ganz einfach mit If-Abfragen.
PHP Code:
If BitAND(GUICtrlRead($Radio1), $GUI_CHECKED) = $GUI_CHECKED Then
MsgBox("","","radio 1")
ElseIf BitAND(GUICtrlRead($Radio2), $GUI_CHECKED) = $GUI_CHECKED Then
MsgBox("","","radio 2")
ElseIf BitAND(GUICtrlRead($Radio3), $GUI_CHECKED) = $GUI_CHECKED Then
MsgBox("","","radio 3")
Else
MsgBox("","","nichts")
EndIf