is there anyway of printing on a form like
vb does
print "Hello today"
or even
printer.print "hello today":
thanks
Printable View
is there anyway of printing on a form like
vb does
print "Hello today"
or even
printer.print "hello today":
thanks
Code:Dim G As System.Drawing.Graphics = Me.CreateGraphics
G.DrawString("hello today", Me.Font, New System.Drawing.SolidBrush(Me.ForeColor), 0, 0)
G.Dispose()