Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsFree MagazinesWhite PapersSubmit Content
Discussion GroupsASP.NETWindows FormsLanguages.NET FrameworkVisual Studio.NET
Articles.NET FrameworkASP.NETToolsWindows Forms
.NET DirectoryOpen Source ProjectsUser GroupsWeb Resources
Related Topics
Visual Basic 6SQL ServerMS AccessOther DB ProductsMS Server ProductsMore Topics ...

.NET Forum / Languages / Visual J# / April 2004

Tip: Looking for answers? Try searching our database.

How do I force a console application to be minimized upon launch?

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Console guy - 29 Apr 2004 07:11 GMT
How do I force a console application to be minimized upon launch?
I have an application which starts a J# console applicatio
I can't seem to find the compiler options to allow this to be minimized. Any help
Thanks
Lars-Inge T?nnessen - 29 Apr 2004 12:24 GMT
> I have an application which starts a J# console application
> I can't seem to find the compiler options to allow this to be minimized.

In the app that starts the console application:

System.Diagnostics.ProcessStartInfo processinfo = new
System.Diagnostics.ProcessStartInfo();
processinfo.set_FileName( "notepad.exe" );
processinfo.set_WindowStyle(
System.Diagnostics.ProcessWindowStyle.Minimized );
System.Diagnostics.Process process = System.Diagnostics.Process.Start(
processinfo );
// process.WaitForExit();

This will start the notepad text editor minimized. If you comment in the
last line, it will hang until notepad is closed by the user.

Regards,
Lars-Inge T?nnessen
www.larsinge.com

Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.