Subj : Re: Creating dll To : borland.public.cpp.borlandcpp From : Bob Gonder Date : Thu Jul 15 2004 08:18 pm Itay wrote: >MyProject is quite big ( lot's of files), the problem is that compiling >takes a lot of time. >I want to transform some of my files into dll's so I won't have to compile >to hole project. Are you sure you _need_ DLL? Why not a regular LIB? You put your modules into a LIB that is then linked into your application. Only changed files are recompiled and updated in the LIB. Added Benefit: Only one file to distribute (no DLLs) .