Abdul Manaf
Abdul Manaf

Reputation: 71

How to use ActiveX DLL in Visual Foxpro 6?

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

Answers (1)

Mark Bertenshaw
Mark Bertenshaw

Reputation: 5689

Try:

myObject = CREATEOBJECT("Project.Class")
myObject.RunMethod()

Upvotes: 3

Related Questions