How do i add reference to Visual Basic power packs in Windows Form C#

前端 未结 2 1467
一个人的身影
一个人的身影 2020-12-12 06:49

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

相关标签:
2条回答
  • 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.
    0 讨论(0)
  • 2020-12-12 07:53

    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.

    0 讨论(0)
提交回复
热议问题