option button [message #157292] |
Wed, 01 February 2006 07:48 ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
eswaries
Messages: 41 Registered: January 2006
|
Member |
|
|
I am using forms 6i.i have three option buttons.when i click the
option button1 it call one form. when i click another option button
it will call another form.for this what is the coding and in which trigger i write this code.and what are the option button properties that i have to change.
|
|
|
Re: option button [message #157310 is a reply to message #157292] |
Wed, 01 February 2006 08:38 ![Go to previous message Go to previous message](/forum/theme/orafaq/images/up.png) |
![](/forum/images/custom_avatars/43055.jpg) |
Maaher
Messages: 7065 Registered: December 2001
|
Senior Member |
|
|
Please confirm:
- You are referring to a radio group
- Depending on the radio button you chose you want another form to be opened
- You created a push button to invoke the other Form.
- You have checked forms help on calling/opening other Forms
In the WHEN-BUTTON-PRESSED trigger, you open/call the Form as Forms help has explained to you. The Forms name is dynamic. The easiest is to make the radio buttons 'value' property equal to the form linked to that radio button. You just do something like:
Begin
Open_Form(:yourblock.your_radio_group);
End; Of course, the other parameters of the OPEN_FORM call are up to you.
MHE
|
|
|