Link to home
Start Free TrialLog in
Avatar of Keeper
Keeper

asked on

Running External Programs

I have just recently started using VB5 and would like to create an application to start programs such as 'WINZIP' by a button or icon interface and I was wondering how you would call an external program using a button/Icon.

Thanks
Steve
Avatar of Keeper
Keeper

ASKER

Adjusted points to 75
If you just want to start some external app, use "shell". The inputs to shell are program name and window mode. such as: shell("c:\windows\notepad.exe",vbMinimized)
If you want your app to wait for the executed program to finish, look here for ExecCmd:

http://support.microsoft.com/support/kb/articles/q129/7/96.asp
ASKER CERTIFIED SOLUTION
Avatar of ggilman
ggilman

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Keeper, u still there?