When you build the DLL it should create an import library(mydll.lib) that you link your application with for early binding. For late binding you use LoadLibrary/GetProcAddress/FreeLibrary. For early binding:
Whether you use early binding or late binding the DLL must be in the DLL search path which will likely be the directory of your application, the directory of your source, or a system directory.