- Aug
- 2,314
- 111
Code:
_x64: 1
_admin: 1
_elevated: 1
TCC 28.02.18 x64 Windows 10 [Version 10.0.19043.1466]
In a detached TCC Window, I get an error when attempting to set the WINDOW size.
Code:
e:\utils>echo %_tctabs
0
e:\utils>WINDOW /SIZE=25,80
TCC: (Sys) The parameter is incorrect.
e:\utils>echo %_rows %_columns
24 118
Thus, it would appear that I cannot use WINDOW /SIZE to change the screen to 25 rows by 80 columns.WINDOW command - Change window position, size, or title
Specify the TCC screen buffer size. Due to the design of Windows console sessions, you cannot use /SIZE to reduce the size of the screen buffer; it can only be increased. Does not affect window size.
Is that what is meant by "The parameter is incorrect"?
Note that if I do;
Code:
mode 80,25
Code:
e:\utils>echo %_rows %_columns
25 80
Is there a TCC method that will do the same as mode 80,25?
Joe