Reputation: 71
I have an ActiveX COM DLL developed in VB6. How can I use it in Visual Foxpro 6?
Please explain with Visual Foxpro 6 code.
Upvotes: 0
Views: 472
Reputation: 5689
Try:
myObject = CREATEOBJECT("Project.Class")
myObject.RunMethod()
Upvotes: 3