Results 1 to 2 of 2

Thread: text alignment while printing on dotmatrix printer using vb

  1. #1

    Thread Starter
    New Member
    Join Date
    Jul 2004
    Posts
    1

    text alignment while printing on dotmatrix printer using vb

    Hi,
    Can u help me how to print a multiline on dotmatrix printer at my prefered location.For example say address,
    alan rodrigues,
    abu shagara,
    london.
    I really appreciated if somebody can help me in this...very urgent..
    regards,
    rosa.

  2. #2
    PowerPoster Pasvorto's Avatar
    Join Date
    Oct 2002
    Location
    Minnesota, USA
    Posts
    2,951
    dim printline as string

    printline = space(5) & "alan rodrigues" & vbcrlf
    printer.print printline
    printline = space(5) & "abu shagara" & vbcrlf
    printer.print printline
    printline = space(5) & "london" & vbcrlf
    printer.print printline

    printer.printdoc

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