|
web
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
DLL in VB.NETHi all,
Can someone give me a good starting point for learning how to write DLL's for use in VB.NET (may also be written in VB.NET) ? The links I found by google are not very educative for me for learning. Kind regards, http://www.vhdl.eu all a dll is is code. create a class project and add code. simple as that,
when it compiles it will b a dll -- -iwdu15 Well ,,,, Put some code in a class project and compile ...
general rules for Dll`s are ,,,, Put code in a dll`that is reusable ( otherwise you could better compile the code in the project itself ) Never put blocking code in a dll ( i have seen many dll projects with msgbox statements in it for instance ) a dll should buble all UI interaction to the calller Create a interface with good describing names for the methods property`s and events regards Michel Posseth [MCP] Show quoteHide quote "Vhdl.eu" <i***@mobile-it.be> schreef in bericht news:44a69a09$0$1217$ba620e4c@news.skynet.be... > Hi all, > > Can someone give me a good starting point for learning how to write DLL's > for use in VB.NET (may also be written in VB.NET) ? > > The links I found by google are not very educative for me for learning. > > Kind regards, > http://www.vhdl.eu > > VDHL,
A dll for what, a webservice, a webpage, a windowservice, or just as a supplier from general functions to other programs? Cor Show quoteHide quote "Vhdl.eu" <i***@mobile-it.be> schreef in bericht news:44a69a09$0$1217$ba620e4c@news.skynet.be... > Hi all, > > Can someone give me a good starting point for learning how to write DLL's > for use in VB.NET (may also be written in VB.NET) ? > > The links I found by google are not very educative for me for learning. > > Kind regards, > http://www.vhdl.eu > > |
|||||||||||||||||||||||