H
Hanksor
I have a report that I would like to determine if a given field is empty on
close. I have the following code;
Private Sub Report_Close()
Dim strID As String
Dim strSql As String
strID = Nz(Me!CardHolderIDtxt, "")
If strID <> "" Then
Blaa, blaa, blaa
End If
End Sub
It crashed at the strID = NZ line. What am I doning wrong? Any help will
be appreciated.
close. I have the following code;
Private Sub Report_Close()
Dim strID As String
Dim strSql As String
strID = Nz(Me!CardHolderIDtxt, "")
If strID <> "" Then
Blaa, blaa, blaa
End If
End Sub
It crashed at the strID = NZ line. What am I doning wrong? Any help will
be appreciated.