Hi
I am just wondering if there is any way that you can increase the size of a check box?
I have read that you cant but just wondered if any one knew a way.
Hi
I am just wondering if there is any way that you can increase the size of a check box?
I have read that you cant but just wondered if any one knew a way.
Not afaik. However, you can use a couple of images e.g. an empty box and a box with a tick.
Then put an image control (in this case called myImage) on your form with the following code in the On Click event for the image control:
Code:
If Me.myCheckBox = True Then
Me.myCheckBox = False
Me.myImage.Picture = "C:\myFolder\myUnTickedImage.JPG"
Else
Me.myCheckBox = True
Me.myImage.Picture = "C:\myFolder\myTickedImage.JPG"
End If
Note that your original tick box remains in place and can be made invisible.
I've not really spent much time doing this sort of thing so other contributors may have more elaborate methods.