DLL in VB.NET

V

Vhdl.eu

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
 
G

Guest

all a dll is is code. create a class project and add code. simple as that,
when it compiles it will b a dll
 
M

Michel Posseth [MCP]

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]
 
C

Cor Ligthert [MVP]

VDHL,

A dll for what, a webservice, a webpage, a windowservice, or just as a
supplier from general functions to other programs?

Cor
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top