Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== which dll is loaded? ====== It is often helpful to know which dll file your exe has loaded at runtime. If you uncomment the first HINSTANCE line, you can specify which path to load a dll, or allow the OS to find one for you. <code cpp> // explicitly load dbExpress driver // HINSTANCE hinstLib = LoadLibrary(TEXT("C:\path\to\specific\location\somefile.dll")); HINSTANCE hinstLib = LoadLibrary(TEXT("somefile.dll")); if (hinstLib == NULL) { ShowMessage("ERROR: unable to load DLL\n"); return 1; } // find the path/filename of the loaded driver LPTSTR strDLLPath1 = new TCHAR[_MAX_PATH]; if( GetModuleFileName((HINSTANCE)hinstLib, strDLLPath1, _MAX_PATH) ){ ShowMessage(String(strDLLPath1)); } </code> ===== See Also ===== * http://www.codeproject.com/KB/DLL/DLLModuleFileName.aspx * http://www.codeproject.com/KB/DLL/dllversion.aspx docs/programming/cpp/which_dll_is_loaded.txt Last modified: 2009/07/09 20:56by billh