console application question

  • Thread starter Thread starter Mounil Kadakia
  • Start date Start date
M

Mounil Kadakia

Hi all,
Basically, I have a windows application and I have a console
application. I want to be able to open the windows application from the
console application. Is that possible? if yes, how?

TIA,
Mounil.
 
Mounil said:
Hi all,
Basically, I have a windows application and I have a console
application. I want to be able to open the windows application from the
console application. Is that possible? if yes, how?

TIA,
Mounil.
process.start pathtoapplication

JB
 
Mounil Kadakia said:
Basically, I have a windows application and I have a console
application. I want to be able to open the windows application from the
console application. Is that possible? if yes, how?

You can use Process.Start to start a new process, whether that's a
Windows application or a console application.
 
Back
Top