Results 1 to 2 of 2

Thread: printing on a form

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    Aug 2001
    Posts
    335

    printing on a form

    is there anyway of printing on a form like
    vb does

    print "Hello today"


    or even

    printer.print "hello today":

    thanks

  2. #2
    Tygur
    Guest
    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()

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width