‎2008 Aug 25 3:24 PM
‎2008 Aug 25 3:27 PM
some thing like this but do search the forum
parameters: p1 as checkbox,
p2 as checkbox.
if p1 = 'X'.
............
elseif p2 = 'X'.
.......
........
‎2008 Aug 25 3:29 PM
If c_checkbox = 'X'. "ie the checkbox is set and ='' for not set
...
...
Endif.
Hope this helps
‎2008 Aug 25 3:30 PM
‎2008 Aug 25 3:30 PM
Hi,
i am not clear about the question, if you want to set the default to be checked
then you can either do it
at selection screen output event
chk_box_name = 'X'.
or if you are using module pool then you can do it in PBO event.
if you simply want to see if user checked the chk box
then you can do it in your code by using if condition
if chk_box = 'X'.
endif.
Thanks,
Kamesh