Results 1 to 6 of 6

Thread: Text Size in Console?

  1. #1

    Thread Starter
    Hyperactive Member Emo's Avatar
    Join Date
    Jul 2000
    Posts
    428

    Arrow Text Size in Console?

    How can I change the text size in console apps?

    -Emo
    -=VB6 Enterprise Edition=-
    -=VC++6Enterprise Edition=-
    «¤E³m°O²™¤»

  2. #2

  3. #3

    Thread Starter
    Hyperactive Member Emo's Avatar
    Join Date
    Jul 2000
    Posts
    428

    Talking

    I thought so, but I just wanted to ask anyway...

    -Emo
    -=VB6 Enterprise Edition=-
    -=VC++6Enterprise Edition=-
    «¤E³m°O²™¤»

  4. #4
    jim mcnamara
    Guest
    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.

  5. #5

    Re: Text Size in Console?

    Originally posted by Emo
    How can I change the text size in console apps?

  6. #6
    jim mcnamara
    Guest
    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
  •  



Click Here to Expand Forum to Full Width