Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Form with Check Boxes
Message
From
16/11/2001 11:59:45
 
General information
Forum:
Visual FoxPro
Category:
Forms & Form designer
Miscellaneous
Thread ID:
00582763
Message ID:
00582773
Views:
21
This message has been marked as the solution to the initial question of the thread.
Hi Debra.

>> I have a form that contains 21 check boxes. Is there a simple, efficient way to determine which boxes are checked? <<

Off the top of my head:
FOR EACH loControl IN Thisform.Controls
  IF loControl.BaseClass = 'Checkbox'
    *** Code here to handle the checked boxes
  ENDIF
ENDFOR
If your check boxes are sitting on a page, you need to call add logic to drill down into the page.
Previous
Reply
Map
View

Click here to load this message in the networking platform