I am working on a Pocket PC application that runs on Windows CE. I need to start another process, but I need it to start hiding or minimizing. Running this on a full Windows system is not a problem, I just installed
Process.StartInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden;
or
Process.StartInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Minimized;
however, StartInfo.WindowStyle does not exist on Windows CE. How to do this using what's available in Windows CE?
Edit: I do not have any information or even access to applications / processes that run this way. I get the path and optional arguments in the ini file, so I can not change the applications that will be launched.
source
share