D
DaveB
I have a box that is suppose to put the LastName,
FirstName in if it is null, but for some reason it only
works if I put some text in it and then delete it and
then go out of the box. Any suggestions? Below is my VB.
Private Sub CompanyName_AfterUpdate()
'Copy the LastName, FirstName value to the CompanyName
Control
If IsNull(CompanyName) Or Len(CompanyName) = 0 Then
Me!CompanyName = (LastName) & "," & (FirstName)
End If
End Sub
FirstName in if it is null, but for some reason it only
works if I put some text in it and then delete it and
then go out of the box. Any suggestions? Below is my VB.
Private Sub CompanyName_AfterUpdate()
'Copy the LastName, FirstName value to the CompanyName
Control
If IsNull(CompanyName) Or Len(CompanyName) = 0 Then
Me!CompanyName = (LastName) & "," & (FirstName)
End If
End Sub