|
code
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
about dll ??i'm confuse about the dll ?? How can i create a dll ?.. what is dll
??.. thnx .. :)) .. 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 Try:
http://www.vb-helper.com/howto_activex_dll.html Then look into getting a book.. -- Show quoteHide quoteChris 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/ "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 .. :)) .. >
VBclassic petition
Draw line on picture; change width determining a rising\falling trend Class_Terminate problem & Run-time error'424': Object required Package/Deployment MkDir with blanks 3rd Party ActiveX Form Control... Creating a Toolbar Working application - Now generates error help with passing values from an aspx page? |
|||||||||||||||||||||||