Results 1 to 3 of 3

Thread: [RESOLVED] Power Packs Error Help

  1. #1

    Thread Starter
    Frenzied Member Pc_Not_Mac's Avatar
    Join Date
    Oct 2009
    Location
    localhost
    Posts
    1,206

    Resolved [RESOLVED] Power Packs Error Help

    When i test my program on a computer that has Visual Basic 2008 the program works. Then i tested the program on a computer that does not have Visual basic 2008 and i get this error.
    I did some research online and i found out that i have to included the power packs but how?
    Thank You in advance
    Attached Images Attached Images  
    My Codebank:
    Windows Vista & 7 Glass Effect & Limit the amount of times your application could be opened.
    Pause Your Code & Check the OS name

    The question of whether computers can think is like the question of whether submarines can swim.

    Currently learning: Java

    Coding can be a learning experience or

  2. #2
    Super Moderator jmcilhinney's Avatar
    Join Date
    May 2005
    Location
    Sydney, Australia
    Posts
    111,221

    Re: Power Packs Error Help

    The VB PowerPacks are not part of the .NET Framework proper. As such, if your app uses them, you have to provide them separately. You would do this in one of two ways, depending on how you're deploying your app:

    1. If you're using ClickOnce publishing or Windows Installer via a Setup project to deploy your app, open the Prerequisites dialogue from the appropriate place and check the box next to the VB PowerPacks redistributable. When the user runs your installer, the VB PowerPacks will be installed to the GAC if and only if they are not already installed, just as the Framework is.

    2. If you're using XCOPY deployment, i.e. simply copying your EXE and its dependencies to the target machine, you need to copy the VB PowerPacks library as one of those dependencies. First, open the References page of the project properties and set the Copy Local property of the VB PowerPacks reference to True. When you build, the VB PowerPacks DLL will be copied to the output folder along with your EXE, ready for deployment.
    Why is my data not saved to my database? | MSDN Data Walkthroughs
    VBForums Database Development FAQ
    My CodeBank Submissions: VB | C#
    My Blog: Data Among Multiple Forms (3 parts)
    Beginner Tutorials: VB | C# | SQL

  3. #3

    Thread Starter
    Frenzied Member Pc_Not_Mac's Avatar
    Join Date
    Oct 2009
    Location
    localhost
    Posts
    1,206

    Talking Re: Power Packs Error Help

    Thank you jmcilhinney You are a code lifesaver.

    0100001101101111011001000110010100100000011011000110100101100110011001010111001101100001011101100110 010101110010

    My Codebank:
    Windows Vista & 7 Glass Effect & Limit the amount of times your application could be opened.
    Pause Your Code & Check the OS name

    The question of whether computers can think is like the question of whether submarines can swim.

    Currently learning: Java

    Coding can be a learning experience or

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width