Guys,
How do I check in Access VBA whether an object has been initialized?
Printable View
Guys,
How do I check in Access VBA whether an object has been initialized?
maybe isnothing(object)?
Helger
that function isn't available.
oh sorry i forgot: that is inconsistent. the correct syntax is
object is nothing
VB Code:
If obj Is Nothing Then Debug.Print "nothing"
Helger