how to overwrite console.write?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello,

I need to write to the console window, but I don't want to add a new line,
and I don't want to write the next value adjacent to the previous value. I
just want to overwrite the previous value. How can this be performed?

Thanks,
Rich
 
Rich,

Console.CursorLeft and Console.CursorTop will let you position the cursor.
Then whatever you write will overwrite what was at that location.

Kerry Moorman
 
Thanks. That is just what I needed.

Rich

Kerry Moorman said:
Rich,

Console.CursorLeft and Console.CursorTop will let you position the cursor.
Then whatever you write will overwrite what was at that location.

Kerry Moorman
 
Back
Top