[DllImport ("MyLib.dll",EntryPoint="Function1")]
private static extern int MyFunc (int _num);
-> I get an exception "Entry Point not found !"
It's my activeX Dll code :
public function Function1 (byval num as long) as long
.....
How to reuse this dll, Somebody help me !