Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
How can I tell if a class exists?
Message
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Title:
How can I tell if a class exists?
Miscellaneous
Thread ID:
00032298
Message ID:
00032298
Views:
80
I have a visual class library (VCX) with several classes in it. Is there a way to tell if a class exists (not necessarily instatiated) in a class library? This is what I have right now. It works, but it has to instatiate the object to determine whether the class exists. This slows down my application among other things.

LPARAMETERS tcObject
LOCAL llRetVal
LOCAL loObject

loObject = CREATEOBJECT(tcObject) && Create object
llRetVal = (TYPE("loObject.Name") == "C") && True=Class exists
IF llRetVal && If class exists...
loObject.Release() && Release object
ENDIF

RETURN llRetVal

The error event catches and ignores error 1733 (Class definition is not found).

Thanks in advance for any help!
Next
Reply
Map
View

Click here to load this message in the networking platform