Results 1 to 5 of 5

Thread: [RESOLVED] POS .NET vb.net 2012 - print 2 copies of the receipt?

Threaded View

  1. #1

    Thread Starter
    PowerPoster Static's Avatar
    Join Date
    Oct 2000
    Location
    Rochester, NY
    Posts
    9,390

    Resolved [RESOLVED] POS .NET vb.net 2012 - print 2 copies of the receipt?

    Using the POS.net with an EPSON TM-T20 i have the receipts printing perfectly.... my issue is printing 2 copies.
    Right now it loops through the code, rebuilding the receipt then printing it a second time, which works, but its slower.

    It SEEMS like there should be a way to set the printer to just print it twice?

    I have searched everywhere, cant find it.

    Thanks!

    EDIT:

    why is it 1/2 the time i give up.. and post here... the idea/solution comes to me moments after posting!!

    i built the entire receipt into a string.. did a transaction print and shot the string to the printer twice before finsih

    Code:
    EPSON.TransactionPrint(PrinterStation.Receipt, PrinterTransactionControl.Transaction)
                For I As Integer = 1 To Copies
                    EPSON.PrintNormal(PrinterStation.Receipt, strPrint)
                    EPSON.PrintNormal(PrinterStation.Receipt, FEEDCUT)
                Next
                EPSON.TransactionPrint(PrinterStation.Receipt, PrinterTransactionControl.Normal)
    now, if only i could get it to actually start printing faster!!!
    Last edited by Static; May 4th, 2013 at 09:18 AM.
    JPnyc rocks!! (Just ask him!)
    If u have your answer please go to the thread tools and click "Mark Thread Resolved"

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