CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Feb 2000
    Location
    Indiana USA
    Posts
    193

    Installing 2 apps

    I have a payroll input application that uses an Access database. The database becomes corrupted quite often, so I have included an On Error DB repair routine within the application. I have used the same routine by itself in another application just in case the user can not even start the Payroll app.

    My question is, since the routine uses the same references that are included in the larger Payroll app, Can I just include the Repair.exe in the Payroll installation or do I need to create a seperate installation for it?

    Thanks in advance
    Catrina


  2. #2
    Join Date
    Jan 2000
    Location
    MO, USA
    Posts
    1,506

    Re: Installing 2 apps

    If you do not plan to distribute the repair.exe by itself, you can just include it with the setup of the payroll app. before running the repair.exe, the installation for the payroll must be complete so all the runtime libraries are there.

    good luck,

    john

    John Pirkey
    MCSD
    http://www.ShallowWaterSystems.com
    http://www.stlvbug.org
    John Pirkey
    MCSD (VB6)
    http://www.stlvbug.org

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

Featured