Check Boxes

  • Thread starter Thread starter Dan Sweetwood
  • Start date Start date
D

Dan Sweetwood

This may sound trivial but I cannot find the answer. I
have created a questionaire database using alot of yes/no
check boxes. The issue is when the forms/reports are
viewed or printed the unchecked boxes are in most cases
but not all grayed out. I want the boxes to appear and
print clear. I have given the fields the =no default value
when I designed the tables but that has had no effect. Any
ideas anyone? I appreciate your assistance.
 
Hi, Dan Sweetwood

You must set the checkbox 's "value" property .

You can script code like below,then you problem is being solved.

Private Sub Form_Load()

CheckBox1.Value = 0

End Sub

LoadHigh
From China
 
Thank you for your help all the way from Austrailia. I
tried false with no effect but I will try the 0 next. I
checked out your websites. Very useful and a little
daunting as to how much there is to learn! Thanks again
from San Diego, CA!
 
Back
Top