I've put a tick box on my form which , when ticked, hides a text box (called text41).
The tick box is called Check45.
Basically, I wrote an event based on various posts I have been looking at.
Private Sub Check45_Click()
If Active Then
If Not Me.NewRecord Then
Text41.Visible = False
Else
Text41.Visible = True
End If
End Sub
This is in the event part of the property sheet, the On click part.
Anyway, I cannot get it to work. I get a compile error whcih says,
Compile error. Block if without End If.
Any ideas anyone?![]()