|
-
Mar 7th, 2001, 10:52 AM
#1
Thread Starter
Hyperactive Member
What is the difference between compiling a dynamic Library and an Executable file???? Which one is better for everyday-use-applications???
-
Mar 7th, 2001, 11:21 AM
#2
Lively Member
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
-
Mar 7th, 2001, 11:28 AM
#3
transcendental analytic
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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|