![]() |
|
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
Programmer
Join Date: Oct 2005
Posts: 52
Rep Power: 4
![]() |
dll confusion
I'm having problems understand how .dll's work and how they are incorperated into a program. I know that they are libraries and contain information but for what?
|
|
|
|
|
|
#2 |
|
Professional Programmer
Join Date: Jan 2006
Location: Ontario, Canada
Posts: 380
Rep Power: 3
![]() |
I am sure Google would have got you an answer very quick. A very simple way of putting it is if you code a bunch of functions and classes that would be useful for a number of projects; you can compile them into a .dll and just include that .dll in other projects to be able to use those classes and functions instead of re-adding all that extra code. Do some googling and you can find a lot more detailed information.
__________________
I am Addicted to Linux! |
|
|
|
|
|
#3 |
|
Unverified User
Join Date: Aug 2006
Posts: 88
Rep Power: 0
![]() |
|
|
|
|
|
|
#4 |
|
Programmer
Join Date: Apr 2005
Posts: 32
Rep Power: 0
![]() |
Hi,
Back in the Visual Basic 4 through Visual basic 6 days, we almost always thought of components and classes together. For instnace, when you created an ActiveX DLL in Visual Basic 4 through 6, you were really building a component that contained one or more classes. The classes were the implementation of the code, whereas the components were the container for the classes. When you compiled the component, Visual Basic generated either a .dll or an .exe extension. In Visial Basic.net, you create projects that are compiled into assemblies. Asseblies are now the .dll or .exe implementation of the project and contain the MSIL that actually gets processed by the CLR. When you build the project, you place classes or classes that are called componenets in your project. Regards bhar Books for .net programmers http://www.vkinfotek.com |
|
|
|
![]() |
| Bookmarks |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| nested array confusion :S | chepfaust | Visual Basic | 5 | Mar 14th, 2005 3:09 PM |