D
dave
Hi
Any ideas how I can do this? I have a form with a checkbox. By default the
check box is ticked, if you untick the checkbox a tab is made visible. I
have done this by
Private Sub Current_Click()
If Current.Value = True Then
Page80.Visible = False
Else
Page80.Visible = True
End If
This works fine if I tick or untick the box. The problem I have is when I
navigate thru the records. Because the checkbox is not being physically
ticked or unticked, the code doesnt run. How I can I get the code to run
when navigating from one record to the next?
Thanks
Any ideas how I can do this? I have a form with a checkbox. By default the
check box is ticked, if you untick the checkbox a tab is made visible. I
have done this by
Private Sub Current_Click()
If Current.Value = True Then
Page80.Visible = False
Else
Page80.Visible = True
End If
This works fine if I tick or untick the box. The problem I have is when I
navigate thru the records. Because the checkbox is not being physically
ticked or unticked, the code doesnt run. How I can I get the code to run
when navigating from one record to the next?
Thanks