You will have to be careful when doing this kind of work. You probably might lose your job if your current employer get to know about this. If it is not a problem to them you can continue after all it all money. You will have to charge a reasonable hourly rate and forget about the amount that your manager is getting. I'm pretty sure he has done a good job to get that work for him. So think about a reasonable hourly rate and discuss with your manager.
V
Virajs
@Virajs
Posts
-
Need advice -
How to load a ActiveX Dll Dynamically by specifying the dll name:laugh::-D#include #import "C:\Project1.dll" no_namespace class RemoteDllLoader { _Class1Ptr ptr; public: RemoteDllLoader() { try { CoInitialize(NULL); ptr.CreateInstance(__uuidof(Class1)); } catch(_com_error &e) { _bstr_t err = e.Description(); MessageBox(NULL,err,"Error",0); } } ~RemoteDllLoader() { CoUninitialize(); } void Test() { ptr->Test1("Hi"); } int Test2(int n1,int n2) { return ptr->Test2(n1,n2); } }; this is the code that i used to load an activex dll.but I want to load a particular dll by specifying it dll name given by a parameter.Can it be possible? I appreciate any possible answer.Thnxs Viraj Siriwardana