Results 1 to 3 of 3

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
    Lively Member
    Join Date
    Feb 2001
    Location
    Qc, Canada
    Posts
    70
    Hi,

    Go with the EXE. The DLL are generally used to store functions that can be used by multiple application (exe).

    Steph
    Virtually Impossible !

    VB5 Entreprise (SP3) - VB6 Entreprise (SP4), MSSQL7, MSAccess, VBA, VBScript, ASP

  3. #3
    transcendental analytic kedaman's Avatar
    Join Date
    Mar 2000
    Location
    0x002F2EA8
    Posts
    7,221
    DLL's are not standalone applications, they are not executable in other words, the big difference between executables and dynamic link libraries is that all classes are private in a exe while a dll can share their classes to other projects. There's no which is better, they serve different purposes.
    Use
    writing software in C++ is like driving rivets into steel beam with a toothpick.
    writing haskell makes your life easier:
    reverse (p (6*9)) where p x|x==0=""|True=chr (48+z): p y where (y,z)=divMod x 13
    To throw away OOP for low level languages is myopia, to keep OOP is hyperopia. To throw away OOP for a high level language is insight.

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