i have registered a COM DLL (compiled in .net 3.5) as ,
1)regasm ABC.dll
2)regasm ABC.dll / regfile:ABC.reg
3)regasm ABC.dll /tlb:ABC.tlb
i want to call a function from the DLL to my Dexterity application .(same code in AX is given bellow)
A dll is getting called in AX as,
------------------------------------------------------------------START----
x=7;
dll winapidll=new dll("ABC.dll");
dllfunction function=new dllfunction(WinApiDLL,'_Distributeamount@40');
Function.args(extTypes::DWord,extTypes::String,extTypes::String,extTypes::String,extTypes::String,extTypes::Double,
extTypes::String,extTypes::String,extTypes::String );
Function.returns(extTypes::DWord);
x=Function.call(this.hwnd(),prm1,prm2,prm3,prm4,prm5,prm6,prm7,prm8);
this.bold(1);
return x;
---------------------END------------------
how can i use the same function in dexterity.Help me to solve this.
regards,
*This post is locked for comments