DLL

R

ritscoolman

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

Joseph Bittman MVP MCSD

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/
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top