|
-
Sep 3rd, 2001, 01:07 PM
#1
Thread Starter
Hyperactive Member
Text Size in Console?
How can I change the text size in console apps?
-Emo
-=VB6 Enterprise Edition=-
-=VC++6Enterprise Edition=-
«¤E³m°O²™¤»
-
Sep 3rd, 2001, 01:12 PM
#2
Member
-
Sep 3rd, 2001, 01:31 PM
#3
Thread Starter
Hyperactive Member
I thought so, but I just wanted to ask anyway...
-Emo
-=VB6 Enterprise Edition=-
-=VC++6Enterprise Edition=-
«¤E³m°O²™¤»
-
Sep 3rd, 2001, 02:31 PM
#4
Code:
char esc = 27;
printf("%d%s", esc, "[2J"); /* clear the screen */
printf("%d%s", esc, "[1;1H"); /* cursor to row 1 col 1 */
You can use ansi cursor and text manipulation commands in the "DOS" window.
-
Sep 3rd, 2001, 02:33 PM
#5
Member
Re: Text Size in Console?
Originally posted by Emo
How can I change the text size in console apps?
-
Sep 3rd, 2001, 02:33 PM
#6
duh.
which means you can use double-height, double-width text, and so on.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|