Can somebody explain the In's and Out's of DLL creation in VB.NET and then how to use it in applications ?
Printable View
Can somebody explain the In's and Out's of DLL creation in VB.NET and then how to use it in applications ?
Very similar to VB6 DLL creation, and I assume you already know how to do that with VB6.
There are just a couple differences, in syntax. For example, Properties would look like this:
VB Code:
Public Property whatever() As String Get End Get Set(ByVal Value As String) End Set End Property
You reference it by simply adding a reference to the DLL. (NO registration of DLLs required, as you probably know)