steve4king
IS-IT--Management
I've created a class using the UI to generate a VCX/VCT and am successfully using this class in my code.
This is the first class I've created in this manner in VFP. Most of my properties have assign methods, no access methods.
I understand that code completion of my properties/methods is possible. However, I'm not able to display them for some reason.
What am I missing?
This is the first class I've created in this manner in VFP. Most of my properties have assign methods, no access methods.
I understand that code completion of my properties/methods is possible. However, I'm not able to display them for some reason.
Code:
SET CLASSLIB TO myclassfile
LOCAL oClass1 as "myclassfile.myclass"
oClass1 = CREATEOBJECT("myclass")
oClass1. (nothing)
What am I missing?