F fhsmith Registered User. Local time Today, 17:55 Joined Jul 18, 2019 Messages 11 Jul 18, 2019 #1 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.
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, 15:55 Joined Oct 29, 2018 Messages 22,506 Jul 18, 2019 #2 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.
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.
C CJ_London Super Moderator Staff member Local time Today, 23:55 Joined Feb 19, 2013 Messages 17,406 Jul 18, 2019 #3 take a look at this link which implements DBGuys suggestion https://www.access-programmers.co.uk/forums/showthread.php?t=305659
take a look at this link which implements DBGuys suggestion https://www.access-programmers.co.uk/forums/showthread.php?t=305659
M Mark_ Longboard on the internet Local time Today, 15:55 Joined Sep 12, 2017 Messages 2,388 Jul 18, 2019 #4 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
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