C
Clown Patrol
Guest
Okay,
I am pretty "green" with access. I have a check box, that when checked will make a text box appear.
Private Sub NS_EVENT_ID_GotFocus()
If Me.NS_REPEL_1 = -1 Then
Me.NS_REPEL_1A.Visible = True
Else
Me.NS_REPEL_1A.Visible = False
End If
End Sub
My form has multiple tabs and when I select the next record, the text box (which is set to NOT be visible) acts upon the last action which may or may not have made the text box visible. I must reload the entire form just to see the fields correctly. Can anyone help?
Thanks,
CP
I am pretty "green" with access. I have a check box, that when checked will make a text box appear.
Private Sub NS_EVENT_ID_GotFocus()
If Me.NS_REPEL_1 = -1 Then
Me.NS_REPEL_1A.Visible = True
Else
Me.NS_REPEL_1A.Visible = False
End If
End Sub
My form has multiple tabs and when I select the next record, the text box (which is set to NOT be visible) acts upon the last action which may or may not have made the text box visible. I must reload the entire form just to see the fields correctly. Can anyone help?
Thanks,
CP