Check Box Option

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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
 
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.
 
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 - 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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top