Well, I am using a few GuiRadioCtrl ( actually 6), but, is there a way to see if some of them are checked? ( groupnum = 1)
Is there a faster way then doing like
PHP Code:
if ( ( @ Radio_Button0).checked || ( @ Radio_Button1).checked)
{
...
} // just an example, having a long if statement.
Is there a faster way?