Radio buttons in Forms
LuKKaApr 4 2013 — edited Apr 4 2013Hi All
I am facing a silly error in Radio button .
I have a radio group and inside that I have 2 radio buttons.
I have One display item and one button .
I want when Radio button 1 is selected the in Display item some message should display else other message should display .
This will happen when I press the push button .
So I have written in WHEN_BUTTON_PRESSED trigger as below .
If :ITEM4.RADIO_BUTTON5 = 1 then
:ITEM9 := 'Radio1';
Else
:ITEM9 := 'Radio2';
End if ;
But I am getting this error .
Can you please tell me what is the problem .
BLOCK3 -- Block
ITEM4 -- Radio Group
RADIO_BUTTON5 - Radio Button 1
RADIO_BUTTON6 - Radio Button 2
ITEM9 - Display item
ITEM8 - Push Button