|
Printing Console Text
|
Jason Bilow
|
Feb 11, 2009 20:34 PST
|
I started a Console Application with some simple code:
FileOpen(1, "E:\testconsole.txt", OpenMode.Input)
Input(1, UserName)
FileClose(1)
Console.Write(UserName)
Console.SetCursorPosition(10, 0)
Console.Write("New Text")
Console.ReadLine()
Works as it should. Prints the one item I put in a text file, then tabs
to column 10,0, then writes New Text.
I would like to send what I see on my console to the printer. Searching
on PlanetSourceCode, Yahoo, Google, hasn't turned up anything for me
yet. The majority of search results returned are all about different
ways I can write text to the console screen.
Any ideas how I can send the outputted text to the printer? Thanks.
|
|
 |
|