I've written a small test COM dll in c# and registered it. I would like to call this from Clarion.
So far in clarion I have the following code
?OLE{PROP:Create} = 'test.test_COM'
oc:MicData = ?OLE{ 'SayHello("myname")' }
The problem I'm having is there is a class testClass_COM and the function SayHello actually lies in the class. How can I access the function or create an object in clarion with the class testClass_COM and access the function that way.
Thanks in advance for any help