vote up 0 vote down star

In my PowerBuilder application, the following code segment causes an R0002 error at runtime (a null object is being referenced):

Window w = windows[idx]
IF NOT IsNull( w ) THEN
    MessageBox( "", "ClassName is " + w.GetClassName() ) // This line crashes
END IF

Does anybody know why that is? I was under the impression that IsNull() is specifically meant to test for null values.

flag

2 Answers

vote up 2 vote down check

I think these are different kinds of NULL. One is a variable with the value of NULL The other is an object that doesn't exist or hasn't been instantiated.

In the second case, you may want to use isValid().

link|flag
vote up 2 vote down

Use IsValid(w) in order to determine whether an object variable is instantiated —- whether its value is a valid object handle.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.