VB.NET & Create Class Library (.dll): Learn and example how to create Class Library or Component on Visual Studio Project.
ShotDev Focus:
- VB.NET & Add Reference Library or Component (.dll)
Visual Studio .NET 2003
Create new project select tyle : Class Library.
Class properties.
Add new class in project. Right click -> Add -> Class
Select class item.
This example create class for string. Complete application can be copy dll to use the other project.
[hr]
On another project right click To add a library that was created earlier
Select library .dll
Imports a class for use.
Sample call a function in class library.
.
.
.
2lawrence…
…