Subj : Re: DLL To : borland.public.cpp.borlandcpp From : Juris Date : Thu Oct 06 2005 03:12 pm > [Linker Fehler] Unresolver external "OpenDevice" referenced from > C.\programme\borland\cbuilder5\projects\vellemann.obj. > > I have the K8055D.dll in the same folder as the project. > Do I need to include something to the project? > > Please help me I need some hint. > > Thanks > > This is called - static linking of DLL. Firstly You need import library. You can make it using borlands tools .. find BIN library under Borland C++ Builder folder. then use : implib k8055d.lib k8055d.dll to make k8055d.lib. Add Library(lib) file to Your project and try to compile once again. Juris .