hexagon logo

Using Radio Buttons with Forms

Hi all,

I'm trying to use forms to allow the operator to run pieces of the program with a single selection at a time. So, I learned a little about forms, and I see that Radio buttons will allow the user to select one option at a time. However, when I use IF_GOTO statements to link the parameters and labels together, it doesn't work. This does work with CHECKBOXES but not Radio Buttons.

STARTUP    =ALIGNMENT/START,RECALL:USE_PART_SETUP,LIST=YES
            ALIGNMENT/END
            MODE/MANUAL
            ASSIGN/OPTION_ONE=0
            ASSIGN/OPTION_TWO=0
            ASSIGN/OPTION_THREE=0
CS1        =FORM/FILENAME= C:\USERS\PUBLIC\DOCUMENTS\HEXAGON\PC-DMIS\2022.1\REPORTING\DOROTHY MEDIUM.FORM
            PARAM/RADIOBUTTON1=OPTION_ONE
            PARAM/RADIOBUTTON1=OPTION_TWO
            PARAM/RADIOBUTTON1=OPTION_THREE
            PARAM/=
            ENDFORM/
            IF_GOTO/OPTION_ONE,GOTO = CALIBRATE_TIPS
            IF_GOTO/OPTION_TWO,GOTO = MAUAL_ALIGNMENT
            IF_GOTO/OPTION_THREE,GOTO = RUN_PROGRAM​


I've also tried
IF_GOTO/OPTION_ONE==1,GOTO = CALIBRATE_TIPS
but still no luck.

Attached Files