D
dbl
Hi I have entered the following code (thanks to the help of Grep)
on my Incident Data Form
Private Sub Form_Current()
If IsNull(txtInFo) Then
txtInFo.Visible = False
Else
txtInFo.Visible = True
End If
End Sub
The txtInFo field only becomes visible after you use reset or you go out of
the record and back into it.
I need it to work as a prompt when you select an Employer if the txtInFo
field has data in it, then the txtInFo field must be displayed as soon as
the Employer field has lost the focus/ been up dated.
Any help would be very much appreciated.
Thanks Bob
on my Incident Data Form
Private Sub Form_Current()
If IsNull(txtInFo) Then
txtInFo.Visible = False
Else
txtInFo.Visible = True
End If
End Sub
The txtInFo field only becomes visible after you use reset or you go out of
the record and back into it.
I need it to work as a prompt when you select an Employer if the txtInFo
field has data in it, then the txtInFo field must be displayed as soon as
the Employer field has lost the focus/ been up dated.
Any help would be very much appreciated.
Thanks Bob