starting process

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

i am trying to run a process through that code
Process.Start("myApllication.exe");
but the command prompet window opens while starting of the process
i want to delete this effect
how ?
thx all
 
is "myApplication.exe" windows forms app or console one?

if it is console app afaik you will not be able to remove command prompt

"Just close your eyes and see"
 
hi,

Set ProcessSTartInfo.WindowSTyle to hidden

cheers,

--
Ignacio Machin,
ignacio.machin AT dot.state.fl.us
Florida Department Of Transportation



"Just close your eyes and see"
 
Back
Top