Check Boxes

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.
 
L

loadhigh

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
 
D

Dan Sweetwood

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!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top