Boyd Campbell wrote: > Is there a way in code (C#) for me to specify that my console applet run > minimized?
The Win32 code would be: ShowWindow( GetConsoleWindow(), SW_SHOWMINIMIZED ); Not sure if the console APIs are exposed in .NET or not... you might need to P/Invoke to GetConsoleWindow(). Brad -- Read my web log at http://www.quality.nu/dotnetguy/ You can read messages from the DOTNET archive, unsubscribe from DOTNET, or subscribe to other DevelopMentor lists at http://discuss.develop.com.
