Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

check box

Former Member
0 Likes
732

HI ALL

am taking the 3 checkbox as shown below

PARAMETERS:A AS CHECKBOX.

PARAMETERS:B AS CHECKBOX.

PARMETERS:C AS CHECKBOX.

and after dis am writing the code as

IF A = 'X'.

CODE

ELSEIF B = 'X'

CODE

ELSEIF C = 'X'

CODE

ENDIF.

So the output is coming but i want to select only one of the checkbox but when am selecting all the checkboxes it is getting selected...please help me in telling me how to select only one check box

with regards

vijay

5 REPLIES 5
Read only

Former Member
0 Likes
644

hi,

check box is for multiple selection..

use radio buttons instead,,

rewards if useful

regards,

nazeer

Read only

Former Member
0 Likes
644

Hi,

Please check once selection screen b4 executing whether all the checkbox's are selected or not.

If you checked particular checkbox then that code will execute.

Thanks,

Krishna chaitanya.

Read only

former_member223446
Active Participant
0 Likes
644

use like this

PARAMETERS:A AS CHECKBOX default 'x'.

then by default it will be selcted

thanks

kiran

Read only

Former Member
0 Likes
644

Hi,

when u use checkbox u can select more than one at a time , as u r requirement u want to select only one button at a time better u go for Radio buttons.

Reward points if useful..

Regards

Nilesh

Read only

Former Member
0 Likes
644

hh