In Access 2000 I have the following:
Declarded in a module
Public strReportReference As String
Public strReportCommonName as string
In Form
Select Case strReportReference
Case Not IsNull(strReportReference)
strReportCommonName = "Common Report"
Case strReportReference <> ""
strReportCommonName = ""
End Select
If strReportReference = "" the select case works.
If strReportReference = "Test", the select case does not work.
Any ideas why?
Declarded in a module
Public strReportReference As String
Public strReportCommonName as string
In Form
Select Case strReportReference
Case Not IsNull(strReportReference)
strReportCommonName = "Common Report"
Case strReportReference <> ""
strReportCommonName = ""
End Select
If strReportReference = "" the select case works.
If strReportReference = "Test", the select case does not work.
Any ideas why?