check box automation in Oracle Forms
5 pts.
0
Q:
check box automation in Oracle Forms
I'm developing a form using Oracle Forms6i. I have 10 check boxes and one button named "select all". when i oress the select all button i want all the 10 check boxes to be checked. How to make check box checked automaticallyu. pls help

ASKED: Oct 22 2009  9:35 AM GMT
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
0
29710 pts.
0
A:
 RATE THIS ANSWER
0
Click to Vote:
  •   0
  •  0
  • AddThis Social Bookmark Button
You just need to assign the desired value to each one of the checkbox items from the when-button-pressed trigger of the button.

For example, if the 'value_when_checked' property of your checkboxes is 1, your trigger should be something like this:

:your_block.your_checkbox_1 := 1;
:your_block.your_checkbox_2 := 1;
:your_block.your_checkbox_3 := 1;
...
:your_block.your_checkbox_10 := 1;
Last Answered: Oct 22 2009  3:23 PM GMT by Carlosdl   29710 pts.
0
0
Discuss This Answer:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _



0