I am writing a code that open a program like :
System.Diagnostics.Process aProcess = new System.Diagnostics.Process();
aProcess.StartInfo = new System.Diagnostics.ProcessStartInfo(
System.IO.Path.Combine(Environment.GetFolderPath(
Environment.SpecialFolder.ApplicationData), @"MyApp.exe"));
aProcess.Start();
MyApp.exe is not a dot net program. I want to hide the icon of this program from the taskbar.