Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Enlarging Checkbox

Status
Not open for further replies.

connerintel

IS-IT--Management
May 12, 2003
4
0
0
US
I remember once seeing a posting explaining how to enlarge a checkbox. Now that I need to do it I can't locate it. Can anyone help??
 
Create a textbox named txtChecked, size it, set the font size to 18 (or whatever size you want), set Enabled and Locked properties to Yes, and add this code to the On Click event:

If Me![txtChecked].Value = "X" Then
Me![txtChecked].Value = ""
ElseIf Me![txtChecked].Value = "" Then
Me![txtChecked].Value = "X"
End If

Hope this helps
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top