0

I have installed Visual Basic Power packs package and want to reference the VisualBasic.PowerPacks dll but it is not visible. Using VS 2012 version.

Thanks

Joel Coehoorn
  • 399,467
  • 113
  • 570
  • 794
user1291401
  • 264
  • 1
  • 6
  • 18

2 Answers2

3

The DLL is located here: C:\Program Files (x86)\Microsoft Visual Basic 2005 Power Packs\3.0

DLL Name: Microsoft.VisualBasic.PowerPacks.dll

Instructions to add reference:

  1. Right-click References
  2. Click Add Reference
  3. Click Browse at the bottom
  4. Select the DLL file.
Osama Rizwan
  • 615
  • 1
  • 7
  • 19
Jeff
  • 155
  • 1
  • 10
2

Simple and easy way to reference a dll is:

  1. In Solution Explorer, select the project.
  2. On the Project menu, click Add Reference. The Add Reference dialog box opens.
  3. Select the tab indicating the type of component you want to reference. In your case, you will have to select COM tab.

An article on MSDN to include installed libraries.

Shaharyar
  • 12,254
  • 4
  • 46
  • 66