Hi Tom
Don't think you can alter it.
You could put a text box on your form (set format font = windings 2)
Put OnClick Event as
Private Sub TextBox_Click()
If IsNull([TextBox]) Then
Me.TextBox = "O"
Me.CheckBox = 0
End If
If Me.Text2 = "O" Then
Me.TextBox = "P"
Me.CheckBox = -1
Else
Me.TextBox = "O"
Me.CheckBox = 0
End If
'Change Text box name to what it is on your form
'Change Check box name to what it is on your form
End Sub
This would give the effect of a tick box and you can change the size to what
you want.
Note
"O" = O as in LMNOP
0 = 0 as in 01234
Hope this helps
--
Wayne
Manchester, England.
TomP said:
I have a field that is formatted to yes/no. Is there a way I can change the
size of the checkmark on the form and make it look bigger?
Thank you,