Hello There,
I have been trying to implement a addin thing to vb and this is what i have so far, the way it works is basically creates an active x object and then can call unctions etc from it:
Dim pAddIn as Object
Dim strResponse as String
Set pAddIn = CreateObject(Text1.text)
strResponse = pAddIn.Run
Now lets say that text1.text said Project1.MsgBox ie. the class MsgBox in the project Project1, it will run the function Run in the class. Now the problem is that i want it to be able to run a user defined function ie to replace run with something in a textbox, Is this possible ??
Secondly, if this is not then how in C++ can i return a string from a dll. (non mfc).
Many Thanks.
