Yes/No field

fhsmith

Registered User.
Local time
Today, 17:55
Joined
Jul 18, 2019
Messages
11
I have a yes/no field on my entry form. I want to resize the check-off box to make it bigger. How do I do this?

I am using an older version - Access 2002.

Any assistance is greatly appreciated.
 
Hi. Welcome to the forum! You won't be able to. You will have to use your own custom representation of a checkbox. One possible approach is to use a Winding font and some code to display the correct one based on the checkbox value.
 
I have also seen this done with a button where the caption of the button is set based on value in a Yes/No.

Code:
If Me.YesNoField = True
   Me.Button.Caption = "√"
Else
   Me.Button.Caption = ""
End If
 

Users who are viewing this thread

Back
Top Bottom