Newbie needs to make a VB class in to a DLL

  • Thread starter Thread starter Fred
  • Start date Start date
F

Fred

Folks,
I wrote a class that works great. Now my non-technical manager is requiring
that it be a DLL (he's an idiot anyway). How do I go about doing that? I've
looked in the MSDN and can't find anything about creating DLLs.

Are Assemblies the same thing as DLLs?

TIA.

Fred.
 
VS.NET: create a class library project and put the class in there - that will compile to a DLL.

Command Line C#: csc /t:library myclass.cs
Command Line VB.NET: vbc /t:library myclass.vb

In either case make sure the class is marked as public or it will not be visible to code outside of the DLL

Regards

Richard Blewett - DevelopMentor
http://staff.develop.com/richardb/weblog

nntp://news.microsoft.com/microsoft.public.dotnet.framework/<[email protected]>

Folks,
I wrote a class that works great. Now my non-technical manager is requiring
that it be a DLL (he's an idiot anyway). How do I go about doing that? I've
looked in the MSDN and can't find anything about creating DLLs.

Are Assemblies the same thing as DLLs?

TIA.

Fred.



---
Incoming mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.771 / Virus Database: 518 - Release Date: 28/09/2004



[microsoft.public.dotnet.framework]
 
Back
Top