DLL

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • ritscoolman@gmail.com

    #1

    DLL

    how can i make simple dll in visual studio 2005 so that i make my one
    db class namespace in one dll

  • Joseph Bittman MVP MCSD

    #2
    Re: DLL

    Sept. 9, 2006

    To just get your code editor to the point of having a namespace in a DLL to
    add more code... you can just start Visual Studio - create a Class Library
    of your langauge choice.... then you can rename the Class1 file in solution
    explorer to a more appropriate name... and then replace the Class1 file's
    content with something like this:

    Namespace XXXXXX

    Public Class DBFunctions

    End Class
    End Namespace

    Hope this helps!
    --

    Joseph Bittman
    Microsoft Certified Solution Developer
    Microsoft Most Valuable Professional -- DPM

    Blog/Web Site: http://CactiDevelopers.ResDev.Net/
    <ritscoolman@gm ail.comwrote in message
    news:1157827682 .814038.291530@ m79g2000cwm.goo glegroups.com.. .
    how can i make simple dll in visual studio 2005 so that i make my one
    db class namespace in one dll
    >

    Comment

    Working...