Results 1 to 2 of 2

Thread: DLLs in VB.NET

  1. #1

    Thread Starter
    Hyperactive Member spoiledkid's Avatar
    Join Date
    Oct 2002
    Location
    Canada
    Posts
    437

    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 ?

  2. #2
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170
    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:
    1. Public Property whatever() As String
    2.         Get
    3.  
    4.         End Get
    5.         Set(ByVal Value As String)
    6.  
    7.         End Set
    8.     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
  •  



Click Here to Expand Forum to Full Width