Good Morning
I got a library created in visual basic and I want to use it in a VFP 8.0 program. I always create andf load the object in VB 6.0 like this:
VB.
Dim x As Library.libclass
Set x = New Library.libclass
x.MyMethod
(In VB work's)
Now I'm instanciating the class in VFP 8.0 like this:
VFP
x = createobject("Library.libclass"
x.MyMethod
(It doesn't work)
The problem it's that I see the properties of the object but not the methods.
Any help would be great.
Thank You.
I got a library created in visual basic and I want to use it in a VFP 8.0 program. I always create andf load the object in VB 6.0 like this:
VB.
Dim x As Library.libclass
Set x = New Library.libclass
x.MyMethod
(In VB work's)
Now I'm instanciating the class in VFP 8.0 like this:
VFP
x = createobject("Library.libclass"
x.MyMethod
(It doesn't work)
The problem it's that I see the properties of the object but not the methods.
Any help would be great.
Thank You.