Home All Groups Group Topic Archive Search About
Author
30 May 2005 3:14 PM
angelito tan
i'm confuse about the dll ?? How can i create a dll ?.. what is dll
??.. thnx .. :)) ..

Author
30 May 2005 4:44 PM
Benedikt Hübschen
Hi angelito,

DLL stands for Dynamic Link Library.... a dll is like a module in VB.. all
public subs and functions are "exported".. which means: other programs can
call these methodes from outside.

i.E. ... your module "test" has a public function "Public Function Test123(a
as long) as Long"

if you want to call these methode from your dll... you must "declare" it in
your source

Declare Function Test123 lib "test.dll" (a as long) as long

after this.. you can call the function the same way... as you call your own
functions in your project.

I hope, this will help you a little =)


MfG. Benedikt Hübschen
-------------------------------
SilverMoon Software GbR - http://www.silvermoon-software.de
Author
30 May 2005 4:48 PM
Veign
Try:
http://www.vb-helper.com/howto_activex_dll.html

Then look into getting a book..

--
Chris Hanscom - Microsoft MVP (VB)
Veign's Resource Center
http://www.veign.com/vrc_main.asp
--
Read. Decide. Sign the petition to Microsoft.
http://classicvb.org/petition/


Show quoteHide quote
"angelito tan" <diamond_shoe1***@yahoo.com> wrote in message
news:1117466065.070908.97430@g47g2000cwa.googlegroups.com...
> i'm confuse about the dll ?? How can i create a dll ?.. what is dll
> ??.. thnx .. :)) ..
>