Removing legacy app from task bar.
C#
1
Posts
1
Posters
0
Views
1
Watching
-
I have an old Win32 legacy app. I’m able to start the process and send key presses to it (via sendmessage) from another app. What I would like to do is remove this program from the taskbar. An ideas? setting CreateNoWindow=true; does not work I start the process with this:
mp = new Process();
mp.StartInfo.FileName = AppPath+"\\Win32App.exe";
mp.StartInfo.WindowStyle= ProcessWindowStyle.Minimized;
//This next line does not work
mp.StartInfo.CreateNoWindow=true;
mp.Start();