|
-
May 31st, 2004, 09:38 AM
#1
Thread Starter
Hyperactive Member
DLLs in VB.NET
Can somebody explain the In's and Out's of DLL creation in VB.NET and then how to use it in applications ?
-
May 31st, 2004, 11:15 PM
#2
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)
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|