In VS 2005 Express, what is the object used to call an external program?
an example command line would be:
"msiexec.exe /i /q {more parameters here} /switches"
Printable View
In VS 2005 Express, what is the object used to call an external program?
an example command line would be:
"msiexec.exe /i /q {more parameters here} /switches"
Use the Process.Start method. Note that the file to be executed and the commandline arguments are passes as separate parameters to Process.Start.
hello frnd,
just use the
system.diagonastic.process.start("Process Name")
or u can also use the
shell("Command")
regards,
koolprasad2003:)
thank you