epson

Send ESC commands to a printer in C#

心已入冬 提交于 2019-11-28 10:21:18
My application needs to print invoices, then a get the invoice from database, insert information on the invoice in a big string (telling the line, column, etc.) after this I have the string ready to be sent to a printer. My problem is: I need to put some ESC/P commands/characters in my big string I tried to do something like this: char formFeed = (char)12; Convert.ToChar(12); MyBigString.Insert(10, formFeed); Whith this, the line 10 will do a FormFeed, but this doesn't work NOTE: I send the MybigString all at once to the printer. To make my code works, I need to send the data line by line to a

Where can I find a “ESC/POS” Epson Barcode Test Program?

此生再无相见时 提交于 2019-11-28 05:34:16
I am struggling to get an Epson "ESC/POS" printer to print barcodes (Using Delphi) and want to test if the printer is not faulty. Do you know where I can find a program to print a barcode in "ESC/POS"? I suppose as a last resort an OPOS program will also be OK. Also, a demo Delphi Program that works will also be fine. All the Delphi snippets I have so far is not working. The printer I am using is an Epson TM-L60II I Have a full tests program written in Delphi 5 for the TMT88's but the source is abit big for here so here is the barcode bits Please note that as its snippets from the full object

POS Application Development - Receipt Printing

心已入冬 提交于 2019-11-27 10:10:24
问题 I've been building a POS application for a restaurant/bar. The design part is done and for the past month I've been coding it. Everything works fine except now I need to print. I have to print to a receipt printer connected to the computer running the software and later I'll try to print in a remote printer like a kitchen one. I've searched for help in the matter only to find that the standard for printing in these types of printers is using POS for .NET. The thing is, this is now a bit

How can I use JavaPOS to print reciepts with an Epson printer?

谁都会走 提交于 2019-11-27 05:12:35
How can I develop Java Software to print reciepts with an Epson reciept printer? Get the Epson JavaPOS ADK from the Epson website, you'll need to register to download it. Be sure you have a 32-bit JVM installed Install the Epson JavaPOS ADK select 32-bit JVM select option that lib files are copied to the jvm's ext folder. create a port for your printer In the installation folder: Epson/JavaPos/checkHealth can be used to check if your printer is connected correctly. Run Epson/JavaPos/setupPOS/setupPOS.exe, you will create a jpos.xml file which lets your java programm know which deviced are

Send ESC commands to a printer in C#

人盡茶涼 提交于 2019-11-26 16:58:05
问题 My application needs to print invoices, then a get the invoice from database, insert information on the invoice in a big string (telling the line, column, etc.) after this I have the string ready to be sent to a printer. My problem is: I need to put some ESC/P commands/characters in my big string I tried to do something like this: char formFeed = (char)12; Convert.ToChar(12); MyBigString.Insert(10, formFeed); Whith this, the line 10 will do a FormFeed, but this doesn't work NOTE: I send the

How can I use JavaPOS to print reciepts with an Epson printer?

爷,独闯天下 提交于 2019-11-26 11:29:33
问题 How can I develop Java Software to print reciepts with an Epson reciept printer? 回答1: Get the Epson JavaPOS ADK from the Epson website, you'll need to register to download it. Be sure you have a 32-bit JVM installed Install the Epson JavaPOS ADK select 32-bit JVM select option that lib files are copied to the jvm's ext folder. create a port for your printer In the installation folder: Epson/JavaPos/checkHealth can be used to check if your printer is connected correctly. Run Epson/JavaPos