During th eexecution of console application at C++ programming, the window
display is limited on its width. Can it be modified to be full window display?
My system is Microsoft Windows. Tks.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Note also that you can also change the console dimensions under user control
using the window context menu (click the icon on the title bar, select
properties->layout).
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
During th eexecution of console application at C++ programming, the window
display is limited on its width. Can it be modified to be full window display?
My system is Microsoft Windows. Tks.
Use GetLargestConsoleWindowSize() to determine the maximum size, then set it with
SetConsoleWindowInfo()
See also Window and Screen Buffer Size and Console Functions
i.e. RTFM ;)
Note also that you can also change the console dimensions under user control
using the window context menu (click the icon on the title bar, select
properties->layout).
Nated with thanks.