Click here to Skip to main content
15,912,072 members
Please Sign up or sign in to vote.
1.50/5 (2 votes)
See more:
Dear ALL,

How to create a dll in VB.NET 2010. Please help me out.

Regards,
Mohi
Posted

Have a look on simple 9 steps for Creating DLL[^] in VB.NET.

Google[^] will give you results in quick time. So, always FIRST google it then post your questions here.
 
Share this answer
 
Comments
mvengaqua 25-Jun-12 6:01am    
THANKS PRASAD I GOT IT
Prasad_Kulkarni 25-Jun-12 6:13am    
Glad it helps!
try below link..
this link will be usefull.
 
Share this answer
 
Comments
mvengaqua 25-Jun-12 5:30am    
i WANT TO DO THIS IN VB.NET. AND NOT IN C#
[no name] 25-Jun-12 20:03pm    
Do you always scream at people who are trying to help you?
ssd_coolguy 25-Jun-12 9:22am    
i don't think there is too much diff in both..
mvengaqua 25-Jun-12 22:57pm    
sorry if i sounded like screaming.
In .NET with visual studio creating DLL is very simple.

Go to VB.NET projects in visual studio, select Class Library project template, it create project, which compiles to DLL
 
Share this answer
 
A DLL or EXE is not significant in .NET. Do you mean "create a class library"? Well, create a class library, and the output assembly will be compiled to the file of the name *.DLL, by default, but the file name does not really matter.

Moreover, in principle, any assembly could be used and referenced by some other assembly as a class library, even it was compiled as EXE to be a main executable module for an application. The only difference of EXE is having the entry point understood by a standard loader.

—SA
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900