Re: Simplest way to bring console to front
- Posted by Larry Miller <larrymiller at sasktel.net> Oct 05, 2005
- 500 views
The API function GetConsoleWindow() will return a handle to the console associated with the current process. Once you have this, there are a number of functions that may be used to bring the window to the front, such as BringWindowToTop(). Unfortunately, GetConsoleWindow() is available only on Win2000 and later. Larry Miller