Results 1 to 2 of 2

Thread: EXE or DLL???

  1. #1

    Thread Starter
    Hyperactive Member mastermind94's Avatar
    Join Date
    Jun 2000
    Location
    Montréal, Canada
    Posts
    441
    What is the difference between compiling a dynamic Library and an Executable file???? Which one is better for everyday-use-applications???

  2. #2
    Fanatic Member
    Join Date
    Feb 2000
    Location
    Dunmow,Essex,England
    Posts
    898
    This is purely a design issue. EXE's are out of process and run in their own thread space, therefore there is a marshalling overhead between the app and the EXE. The DLL is in process and uses the same thread space as the app that called it therefore less overhead and a bit quicker. However you need to know the intention of the dll before you can decide which one to use. If it's a sinigle pc app then go for the dll.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width