Print Functionality using thermal Printer
I want to print unicode (multiple languages) characters on thermal printer using Asp.net C#.Please help me
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
chiranjeevi mugibariPosted Aug 26, 2015, 6:00 AM
Ravi KumarPosted Aug 26, 2015, 3:28 AM
{
CashInvoiceReport1 _cashInvoiceRpt = new CashInvoiceReport1();
CashInvoiceReport1 crt = _cashInvoiceRpt;
_cashInvoiceRpt.Load("@\\Reports\\CashInvoiceReport1.rpt");
_cashInvoiceRpt.SetDataSource(_ResultDs3.Tables[0].DefaultView);
PrintDialog pd = new PrintDialog();
_cashInvoiceRpt.PrintOptions.PrinterName = pd.PrinterSettings.PrinterName;
_cashInvoiceRpt.PrintToPrinter(1, false, 0, 0);
}