Reputation: 11
I'm doing VB coding using Visual Studio 2008. How to import a .dll file into my program? Can anyone help me please.
Thank you.
Upvotes: 1
Views: 5644
Reputation: 9193
Upvotes: 5
Reputation: 4117
You need to add a reference to the DLL...
Right click references in the project explorer
Click on the browse tab
Browse to your dll
Add a using statement in your code which points to said DLL
Upvotes: 0