Link to home
Start Free TrialLog in
Avatar of claghorn
claghorn

asked on

How to set Oracle Forms 10g Radio Button

Set_Radio_Button_Property('MARKS_DOWNLOAD.DOWNLOAD_TYPE','VALUE','N');

This does not work for some reason. Can anyone tell me why?
I am listing the datablock, the radio group, the value property and the initial value.
Avatar of slightwv (䄆 Netminder)
slightwv (䄆 Netminder)

I haven't been around forms for a long time so I may not be able to help.  

Because my knowledge is old I'm not sure what you are trying to do with that statement.  Can you explain a little more?

first I can't locate 'VALUE' as a valid property (from a quick google).  Might be an old doc.

Also, you have a dot between item and name:
Set_Radio_Button_Property('MARKS_DOWNLOAD','DOWNLOAD_TYPE','VALUE','N');
ASKER CERTIFIED SOLUTION
Avatar of flow01
flow01
Flag of Netherlands image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of claghorn

ASKER

Sometimes the simplest thing is the solution.
:block1.radiogroup_x := value;
This worked. Thanks.