I want to import a library .NET in C#, I want to integrate a VFP9 application using COM interop objects, this library has an abstract class "class1". Try to do it like this:
x = NEWOBJECT ("myclass")
DEFINE CLASS myclass AS session OLEPUBLIC
_Class1 IMPLEMENTS IN "Libreria.Class1"
....
ENDDEFINE
Is it possible IMPLEMENTS of an abstract class?
I tried to inherit from the abstract class like this:
DEFINE CLASS myclass OF "Libreria.dll" AS Libreria.class1
ENDDEFINE
does not work.
The only problem I work with an abstract class, not a common class.
Any idea?
Thank you.
x = NEWOBJECT ("myclass")
DEFINE CLASS myclass AS session OLEPUBLIC
_Class1 IMPLEMENTS IN "Libreria.Class1"
....
ENDDEFINE
Is it possible IMPLEMENTS of an abstract class?
I tried to inherit from the abstract class like this:
DEFINE CLASS myclass OF "Libreria.dll" AS Libreria.class1
ENDDEFINE
does not work.
The only problem I work with an abstract class, not a common class.
Any idea?
Thank you.