Skip to Main Content

Oracle Forms

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Radio buttons in Forms

LuKKaApr 4 2013 — edited Apr 4 2013
Hi 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
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on May 2 2013
Added on Apr 4 2013
3 comments
2,097 views