D
David Ehrenreich
Here is what I'm trying to do. In my form I have feilds
for Ssn# FName, Lname. Since the social and Fname and
last name are always connected. I would like it so that
when I type in a ssn# the Fname and Last name are
automatically entered into their feilds. Here is what I
have tried and it failed .
Private Sub Ssn_LostFocus()
If Not IsNull(DLookup "ssn","CardInfoTbl", _
"ssn=")) Then
FName = Me.FName
End If
End Sub
Thank You
David Ehrenreich
for Ssn# FName, Lname. Since the social and Fname and
last name are always connected. I would like it so that
when I type in a ssn# the Fname and Last name are
automatically entered into their feilds. Here is what I
have tried and it failed .
Private Sub Ssn_LostFocus()
If Not IsNull(DLookup "ssn","CardInfoTbl", _
"ssn=")) Then
FName = Me.FName
End If
End Sub
Thank You
David Ehrenreich