G
Guest
I have this code placed in on Current in my form:
Private Sub Form_Current()
If Me!Text287 = "0" Then
Me!fcdeed.Visible = True
Me!direct.Visible = False
Else
Me!direct.Visible = True
Me!fcdeed.Visible = False
End If
End Sub
My problem is that if I need to change the information in Text289, my form
does not update. (all the information needed comes from one form)
Any suggestions?
Private Sub Form_Current()
If Me!Text287 = "0" Then
Me!fcdeed.Visible = True
Me!direct.Visible = False
Else
Me!direct.Visible = True
Me!fcdeed.Visible = False
End If
End Sub
My problem is that if I need to change the information in Text289, my form
does not update. (all the information needed comes from one form)
Any suggestions?