I am working with some old code and it defines a global variable like this ...
Public myvar
This variable is never assigned a value, but is later used in the test ...
If myvar <> somevalue then
'do something
End If
For what values of some value will this be done?
source
share