quote:
Originally posted by matty
you need to register a Visual Basic DLL before you can use it as an ActiveXObject.
OK, cool. Now I can work with C++.
In case I need VB I understand I need to register using "OleFiles".
How do I register? using the next? :
<OleFiles>
<FileName>C++_function.dll</FileName>
</OleFiles>
Do I need also to write:
var sDll = new ActiveXObject('Project_Name.Class_name');
And how do I call it - using "sDll.function(parameters); " or just like for C++ : " Interop.Call('dllname.dll', 'FunctionName', <params>); " ?
Thanks!