tags:

views:

37

answers:

2

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.

A: 

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

Yoda
I think you mean Imports rather than using :o)
Ardman
+2  A: 
  1. Add the reference (From your menu Project->Add Reference and browse for the dll file)
    1. Put Imports DLL.Namespace at the top of your code.
DaMartyr