View Single Post
  #4 (permalink)  
Old 07-21-2007, 04:30 AM
chrishirst chrishirst is offline
Jr. Programmer
Join Date: Jun 2007
Location: Blackpool UK
Posts: 87
iTrader: (0)
chrishirst will become famous soon enoughchrishirst will become famous soon enough
Quote:
I personally never execute DLL files
Yes you do
Ever called a predefined function for a windows app from an IDE?

Used a function such as Left(), Right(), Mid(), Time(), Now() , read or written a windows property Screen.Height, App.Path. Displayed a value with MsgBox() in your code?

These all come from DLLs

If you code anything in .net for web use it gets compiled into a DLL by the server.

DLL are coded in the same way that a class would be and they inherit nothing from the calling app.

Testing will depend on what your IDE is capable of. Some will allow for inprocess DLL debugging, where the debugger can enter the code that is run in the DLL, others won't.
One method of testing is to initially set the code for the DLL to run a part of the main application and test thoroughly then convert it into a library and test again.

Personally I often build apps using DLLs both ActiveX and real ones

I have a library of functions that I have built up over the years and include these into my apps with DLLs.

__________________
Chris
Indifference will be the downfall of mankind, but who cares?
Code Samples | People Counting System
Digg this Post! Del.Icio.Us this Post! Technorati this Post! Furl this Post! Mister Wong this Post! Newsvine this Post! Spurl this Post! Reddit this Post! Netscape this Post!
Reply With Quote
The Following User Says Thank You to chrishirst For This Useful Post:
HelloWorld (07-21-2007)