Running Other applications
I would like to know how can I run a different application form a given application.
For example
In my program I would like to run the windows media player then how should I go about it?
I just want to launch the application.
yanchao yangPosted Dec 27, 2006, 10:29 PM
argumets = @"C:\MUSIC\123.MP3"
hope this can help.
Good luck
ShishirPosted Dec 25, 2006, 11:14 PM
yanchao yangPosted Dec 25, 2006, 4:22 AM
then using an instance of one method,just like below:
Process WMP= new Process();
WMP.StartInfo.FileName = "WMP.exe";
WMP.StartInfo.Arguments = "123.mp3"
WMP.Start();
You can try, this works for me.