Questions tagged [posprinter]

POS for .NET class that defines the programmatic interface for a UPOS Printer device.

PosPrinter class defines three printer "stations," as follows:

  • Journal. Used for simple text messages that log transaction and activity information kept by the store for audit and other purposes.
  • Receipt. Used to print transaction information (typically given to the customer), or for store reports. Receipt contains either a knife to automatically cut the paper between transactions, or a tear bar to manually cut the paper.
  • Slip. Used to print information on a form (typically given to the customer), or to print "validation" information on a form. The form type is usually a check or credit card slip.

Full documentation

41 questions
0
votes
3 answers

Auto recognition on POS printer

I have a number of POS printers and need to automatically recognize the type of the printer. I need do it without using POS.NET or printer drivers. How can I do that?
pavel
  • 187
  • 1
  • 2
  • 8
0
votes
1 answer

PosPrinter GetDefaultAsync always returns null

I'm trying to print a ticket using .NET POS but i'm not able to get the Default printer. PosPrinter defaultPrinter = await PosPrinter.GetDefaultAsync(); I also tried this: string deviceSelector = PosPrinter.GetDeviceSelector(); PosPrinter printer…
0
votes
1 answer

PosPrinter for .net Printing only once and Hangs

I am building winforms .net Application , I have a E-Pos printer on Network , using this Code below : On Form Loading Printer initializing : explorer = new PosExplorer(this); DeviceInfo receiptPrinterDevice =…
0
votes
2 answers

UWP .Net POSPrinter Not Identifying Epson USB Receipt Printer

I am following the example from the following Repo: https://github.com/Microsoft/Windows-universal-samples/tree/master/Samples/PosPrinter. In the Scenario1_ReceiptPrinter.xaml.cs I have modified the FindReceiptPrinter to run a FindAllAsync() like…
John Graham
  • 573
  • 4
  • 20
0
votes
0 answers

Is there any way to print html formatted text using node-printer?

I am working on POS applicatoin using Electron with Reactjs. Is there any way to print a html layout silently(without showing preview). Tried with node-printer module but not able to print html format. I have tried with below code: var…
0
votes
2 answers

Printing pdf formated receipts using RP327 80mm Thermal Receipt Printer

I'm using dompdf to generate pdf formatted receipts which than be printed using RP327 80mm Thermal Receipt Printer. But printed receipts are not fitting the paper properly. Here is an attached image of printed receipts pos receipt. Here is my html…
0
votes
1 answer

POS Printer Cutter cutting on wrong location

i am trying to Cut paper after every line in VB6 here is the code Open "LPT1" For Output As #1 Print #1, Chr$(&H1B); "@"; 'Initializes the printer (ESC @) Print #1, Chr$(&H1B); "d"; Chr$(0); 'Prints and line feeding (ESC d) Print #1, Chr$(&H1B);…
mortypk
  • 46
  • 1
  • 11
0
votes
1 answer

epson send data tools HOW to

i want to send binary data (ESC/POS command) via EPSON Send Data Tools (senddat.exe) according to there website / Manual from command prompt If the printer is set as a USB printer class: senddat.exe scriptfile USBPRN (C:\senddat.exe sample.txt…
mortypk
  • 46
  • 1
  • 11
0
votes
1 answer

Print Unicode Characters to POS printer

I'm trying to print my language characters to a POS printer. The Printer prints well but the result's so bad. This is what I tried: using (MemoryStream ms = new MemoryStream()) using (BinaryWriter bw = new BinaryWriter(ms)) …
Ringo
  • 3,795
  • 3
  • 22
  • 37
-1
votes
1 answer

Why can't I use a printer and a drawer at the same time in Windows.Devices.PointOfService?

I am creating a POS app. I started with the POS printer and it is working. After that I added the "open cash drawer" functionality. But it interferes with the POS printer somehow. So what is happening? When I only claim a POS printer, printing works…
-1
votes
1 answer

POS receipt print cannot make paper cut using python

Problem We are working on a bigger project where we need to make a POS receipt print. We are able to make a print through the browser but the problem is that we cannot make a cut or a partial cut. Win32 API We have tried with Win32 API which work…
1 2
3