'this will print after each line but remember
'each line will now use 1 page of paper.
'
'a pc is not a typewriter
'
Option Explicit
Public sMyTyping As String
Private Sub Text1_KeyPress(KeyAscii As Integer)
sMyTyping = Text1.Text & Chr(KeyAscii)
'when I press enter that is the end of the line
If KeyAscii = 13 Then
Printer.Print sMyTyping
Printer.EndDoc
sMyTyping = ""
End If
End Sub
"A myth is not the succession of individual images,
but an integerated meaningful entity,
reflecting a distinct aspect of the real world."
___ Adolf Jensen