G
Guest
Hi,
I have imported my com dll with Visual studios "Add reference", and then i'm
using this code:
private static MyComDll connectionKit = new MyComDll();
public static void CreateBatch(object hBatch)
{ ...
connectionKit.ComCreateBatch(...)
}
public static void SendBatch(object hBatch)
{ ...
connectionKit.SendBatch(...)
}
I have no problem with my application, however i think the performance could
be better. Is there any better way to call methods in a com dll? I don't have
access to sourcecode for the dll-file.
I have imported my com dll with Visual studios "Add reference", and then i'm
using this code:
private static MyComDll connectionKit = new MyComDll();
public static void CreateBatch(object hBatch)
{ ...
connectionKit.ComCreateBatch(...)
}
public static void SendBatch(object hBatch)
{ ...
connectionKit.SendBatch(...)
}
I have no problem with my application, however i think the performance could
be better. Is there any better way to call methods in a com dll? I don't have
access to sourcecode for the dll-file.