Author
Language
Operating Systems
Public Sub PrintTextXY(s As String, Optional x, Optional y) If Not IsMissing(x) Then Printer.CurrentX = Val(x) If Not IsMissing(y) Then Printer.CurrentY = Val(y) Printer.Print s End Sub