|
-
Aug 7th, 2000, 11:13 AM
#1
Thread Starter
Member
When I connect checkboxes in VB to Access, I have to use this code to make sure that the checkboxes are null:
For Each ctl In frmOrderNewSheet.Controls
If TypeOf ctl Is CheckBox Then
ctl.Value = 0
End If
Next
The value of the check boxes when the form is loaded is 0, yet without this code, VB automatically makes the boxes grayed with checks. This is annoying. Any Suggestions?
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|