Yes/No field (1 Viewer)

fhsmith

Registered User.
Local time
Today, 14:37
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.
 

theDBguy

I’m here to help
Staff member
Local time
Today, 12:37
Joined
Oct 29, 2018
Messages
21,447
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.
 

Mark_

Longboard on the internet
Local time
Today, 12:37
Joined
Sep 12, 2017
Messages
2,111
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

Top Bottom