Opening Other Applications

  • Thread starter Thread starter John Viall
  • Start date Start date
J

John Viall

I am trying to open a differnent application based on a selected parameter.

For instance, based on a selected value, I need to open different programs:
Safari, Opera, Firefox, Chrome, and IE.

This is for a school project.

Thanks,
John
 
Dim ps As New Process
ps.StartInfo.FileName = "e:\path\program.exe"
ps.Start()

Just replace the filename string with the program you want to run.

Rob
 
Dim ps As New Process
ps.StartInfo.FileName = "e:\path\program.exe"
ps.Start()

Just replace the filename string with the program you want to run.

Rob
 
John Viall said:
I am trying to open a differnent application based on a selected parameter.

For instance, based on a selected value, I need to open different
programs:
Safari, Opera, Firefox, Chrome, and IE.

'System.Diagnostics.Process.Start'.
 
John Viall said:
I am trying to open a differnent application based on a selected parameter.

For instance, based on a selected value, I need to open different
programs:
Safari, Opera, Firefox, Chrome, and IE.

'System.Diagnostics.Process.Start'.
 
Back
Top