I have an ActiveX DLL Project1.dll containing a class Class1.dll which has a public function dummy() that returns a string.
In VB, the following code works
Set obj = CreateObject("Project1.Class1"
MsgBox obj.dummy
How do I call this function dummy() from Powerbuilder 6?
In VB, the following code works
Set obj = CreateObject("Project1.Class1"
MsgBox obj.dummy
How do I call this function dummy() from Powerbuilder 6?