i have a form with 5 tick boxes on it.
I am trying to make the visable property false if the number in another text box is more than a certain figure.
I am just trying it on one tick box at the moment but having no joy
this is what i have so far:
Private Sub Dirt_Cheap____Enter()
If Me![count] > 14 Then
Me![Dirt Cheap_()].Visible = False
End Sub
i get a compiler error
thanks in advance
I am trying to make the visable property false if the number in another text box is more than a certain figure.
I am just trying it on one tick box at the moment but having no joy
this is what i have so far:
Private Sub Dirt_Cheap____Enter()
If Me![count] > 14 Then
Me![Dirt Cheap_()].Visible = False
End Sub
i get a compiler error
thanks in advance