‎2007 May 02 11:14 AM
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
‎2007 May 02 11:20 AM
hi,
check box is for multiple selection..
use radio buttons instead,,
rewards if useful
regards,
nazeer
‎2007 May 02 11:20 AM
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.
‎2007 May 02 11:29 AM
use like this
PARAMETERS:A AS CHECKBOX default 'x'.
then by default it will be selcted
thanks
kiran
‎2007 May 02 2:42 PM
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
‎2007 May 10 6:50 AM