Check Box Option

G

George

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
 
A

Arvin Meyer [MVP]

No. Check boxes have 1 size and 1 color. You can use a pair of superimposed
graphics on single form view, hiding 1 or the other depending upon the state
of the underlying field.
 
W

Wayne-I-M

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
 
G

George

Wayne - Thanks for taking the time to answer my question.

Cheers....

George


Wayne-I-M said:
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
 
Top