I\'m developing a console
application that is supposed to run under WinCE 6.0
and WinCE 7.0
. I\'m using C#
, Compact Fra
Are you putting you .exe file in Arguments
property of ProcessStartInfo
?
If you must do that, I believe that you're using CMD in FileName
property, so you must use /K
before your .exe name.
Or just put in FileName
the .exe path.
You can clarify a lot if you put the code that calls your application.