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.
Hope this helps
--
Wayne
Manchester, England.
George said:
I want to use the "Check Box" option on my form but I can't seem to be able
to adjust it's size once load it on my form - can it be resized ?
George