on 2008 Apr 22 5:54 AM
Hi,
I'm using 11 radiobuttons on my selection screen.
each button gives me output in different format.
how to do that?
again i want to give one listbox/textbox attach to some perticular radiobuttons.
can i do that also?
Thanks,
Deepika
Hi,
Declare 11 radiobuttons as a single group.
And Use the IF and ELSE condition.
IF R1 = X.
your output format.
elseif R2 = X.
your output format.
else.
your output format.
endif.
Regards,
Venkat.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
data : r1,
r2,
up to r11.
parameters: r1 radio button group 'rad',
r2 same,
up to r11.
write the code as:
if r1 = 'x'.
do something.
endif.
if r2 ='x'.
do something.
endif.
like that you can specify various outputs for each radio button.
go to text elements and give what text you want for r1,r2....r11.
Reward if useful.
Dara.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
100 | |
8 | |
6 | |
6 | |
5 | |
5 | |
5 | |
3 | |
3 | |
3 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.