T
Tom Collins
Can someone explain what the difference of these statements are to me? When
I run the Test procedure, I only get one message box with "AAA".
Public Const DEBUG_DEFINED As Boolean = True
Sub Test()
If DEBUG_DEFINED Then
MsgBox "AAA"
End If
#If DEBUG_DEFINED Then
MsgBox "BBB"
#End If
End Sub
Thanks
Tom
I run the Test procedure, I only get one message box with "AAA".
Public Const DEBUG_DEFINED As Boolean = True
Sub Test()
If DEBUG_DEFINED Then
MsgBox "AAA"
End If
#If DEBUG_DEFINED Then
MsgBox "BBB"
#End If
End Sub
Thanks
Tom