I have a property, currently the property returns nothing.
Property Get MyProp alias "MyProp"() as IDISPATCH
Property = NOTHING
End property
My VBSCRIPT - Reminder - This is called from VBSCRIPT
Set Foo = this.MyProp
if Foo = nothing then
Msgbox "NOTHING"
else
Msgbox "SOMETHING"
end if
This keeps crashing.. anyone got any ideas?
Property Get MyProp alias "MyProp"() as IDISPATCH
Property = NOTHING
End property
My VBSCRIPT - Reminder - This is called from VBSCRIPT
Set Foo = this.MyProp
if Foo = nothing then
Msgbox "NOTHING"
else
Msgbox "SOMETHING"
end if
This keeps crashing.. anyone got any ideas?
Comment