Brian wrote:
> I am trying to write a small app that requires me to use a
> DLL.
> I have never use a DLL in a program, have no idea how
> to start, how to call the functions etc. I am a person that
> learns by example, but can't find a set by set guide how
> to do this.
If you have ever called a function from the Windows unit, then you have
used a DLL.
That unit contains hundreds of function declarations in the interface
section, and if you look in the implementation section, you will see
definitions for all those function, but instead of a begin-end block
with their implementations, you'll just see "external" clauses telling
Delphi what DLL implements the functions and what names those functions
are known by in their DLLs.
--
Rob


|