Hi, you can also load the DLLs dynamically. That way you can check if the DDL exists and load it as required. To do this do not link the DLL directly to your project. Instead use the LoadLibrary() function to load the DLL and GetProcAddress() to load specific functions from a loaded DLL.

Ginsengelf