Satellite DLLs
-
hi all I had created two Satellite DLLs corresponding to two resource files in same project.:) Any body have an idea about how to load two satelite dlls at same time to my exe at run time:( regards, aji
Try this link may it'll help u http://msdn2.microsoft.com/en-us/library/8fkteez0(VS.71).aspx Regards, Pankaj Sachdeva
-
hi all I had created two Satellite DLLs corresponding to two resource files in same project.:) Any body have an idea about how to load two satelite dlls at same time to my exe at run time:( regards, aji
CMyApp::InitInstance() { // one of the first things in the init code HINSTANCE hInst = LoadLibrary(“myres.dll”); if (hInst != NULL) AfxSetResourceHandle(hInst); // other initialization code would follow . . . } This will help u loading the satellite dlls Regards, Pankaj Sachdeva
-
CMyApp::InitInstance() { // one of the first things in the init code HINSTANCE hInst = LoadLibrary(“myres.dll”); if (hInst != NULL) AfxSetResourceHandle(hInst); // other initialization code would follow . . . } This will help u loading the satellite dlls Regards, Pankaj Sachdeva