hi sir,
I want to run another exe program is run in vb.net windows application form
because run another exe program cover the my program
but i want to c another exe program running on my program
how can i do for this?
suggest me
thanks
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Kapil Deo MalhotraPosted Feb 3, 2009, 11:54 AM
As i understand your query, you want to execute .exe (application) from the VB.net Windows Application.
You can use the System.Diagnostics Namespace to call the Process start.
i.e.
Process.start("notepad.exe")
You can use the ProcessStartInfo first for passing the filename and different arguments
ProcessStartInfo info = new ProcessStartInfo();
info.FileName = "notepad.exe";
info.Arguments = "c:\\Run.txt";
Process.Start(info);
Hope that help.