CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Guest

    launch a ext. app

    i am putting my program on a cd. well, i have created a startup .inf file so that itll launch a "pre-setup" program. well, on the pre-setup program, it has a button so that the user can click to launch the setup.exe program. how would i code that button to do this? any and all help is greatly appreciated! thanks



    Aaron


  2. #2
    Join Date
    Sep 1999
    Location
    Red Wing, MN USA
    Posts
    312

    Re: launch a ext. app

    Use the Shell Function, ie.

    private Command1_Click()
    Shell App.Path & "\Setup.exe", vbNormalFocus
    End Sub




    Aaron Young
    Analyst Programmer
    [email protected]
    [email protected]
    Aaron Young
    Senior Programmer Analyst (Red Wing Software)
    Certified AllExperts Expert

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