DLL in VB.NET

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Vhdl.eu

    #1

    DLL in VB.NET

    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,
    cteq.eu: Sea of Technology



  • iwdu15

    #2
    RE: DLL in VB.NET

    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

    Comment

    • Michel Posseth  [MCP]

      #3
      Re: DLL in VB.NET


      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]








      "Vhdl.eu" <info@mobile-it.be> schreef in bericht
      news:44a69a09$0 $1217$ba620e4c@ news.skynet.be. ..[color=blue]
      > 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
      >
      >[/color]


      Comment

      • Cor Ligthert [MVP]

        #4
        Re: DLL in VB.NET

        VDHL,

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

        Cor

        "Vhdl.eu" <info@mobile-it.beschreef 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,
        cteq.eu: Sea of Technology

        >
        >

        Comment

        Working...