Questions tagged [printers]

A Printer is a peripheral which produces a text or graphics of documents stored in electronic form, usually on physical print media such as paper or transparencies.

Printers are routinely classified by the printer technology they employ; numerous such technologies have been developed over the years.

Based on the Print quality printers are characterized as follows,

  • Toner-based printers
  • Liquid inkjet printers
  • Solid ink printers
  • Dye-sublimation printers
  • Inkless printers

Source: Wikipedia (Printer)

591 questions
3
votes
1 answer

How to programmatically search a printer in Active Directory

Attempting to find printers / shares in Active Directory using C#. This is my sample code that works for users however I cannot seen to be able to find a printer using the same concept. (I am new to Active Directory). DirectoryEntry…
acolene
  • 91
  • 2
  • 8
2
votes
1 answer

VB6 POS Printer - Logo register

Hy, I have a printer Star TSP100ECO [USB] and I made a program to print a ticket, but I should also add the logo on the ticket. The problem is that I do not understand how to add a logo to the ticket with the help of ESC FS q. Adding the logo using…
ffox003
  • 137
  • 3
  • 8
2
votes
1 answer

get default printer name in web application published in hosting

I have my web page published in hosting, and I cant print my reports because (I tink) my web application can`t get my printer name. An Idea please. Thanks a lot.
AndresC9
  • 39
  • 3
2
votes
0 answers

my printer does not print with react-native-thermal-receipt-printer-image-qr

I am trying to print with a bar code printer xprinter xp-237B my fanction works without error but the printer does not print however with another android application it has printed, I have tried another normal printer it prints without problem can…
2
votes
2 answers

Connecting Fiscal printer with flutter app

I'm working on a kitchen app in flutter. So I need to connect different types of printers to get the KOT and customer prints. I've already connected EPSON thermal printers Starmonics TSP100III Bluetooth printers SUNMI printers But not able to…
2
votes
1 answer

Printing on a legacy DOS program hosted on a VM

I work in a high school IT office. From the 90s through 2002, we used a DOS program called AES to manage electronic student records (grades, attendance, transcripts). We moved the application over to a virtual server about 12 years ago when we…
2
votes
0 answers

How to open the wpf application from v4 printer driver

I have a wpf .NET application and I have created a V4 printer driver from Microsoft and have got it installed . Now how can I open this wpf application from the printer e.g. if user opens any document and select this printer from print option then…
user3510028
  • 583
  • 2
  • 4
  • 14
2
votes
1 answer

Choosing a printer (with dialogue) to print a .xls file to

I have to print a .xls file with a specified path on a network printer (but we have multiple network printers and I don't want to print it at the same one every time). I have a GUI (programmed using NetBeans and the jExcelApi) with a "print"-button.…
Lucas
  • 21
  • 2
2
votes
6 answers

Enumerate printers for a specific Terminal Server session

I am looking for a way to see what printers a specific user has mapped into his or her TS session. How can I achieve this with WMI (via PowerShell) or VB-Script? Is there a built-in way I'm not aware of? EDIT: In our construct mapping of local…
VVS
  • 19,405
  • 5
  • 46
  • 65
2
votes
0 answers

How to print a long page on physical printer using java?

I want to print 1000 line(numbered from 1 to 1000) on a virtual printer (Microsoft Print to PDF)but it prints only 122 line not more then this. what I have tried is: Case 1: package hindirewr; import java.awt.Font; import java.awt.Graphics; import…
Suthar
  • 91
  • 2
  • 8
2
votes
0 answers

Error capturing number of document copies sent to printer using "Win32_PrintJob" Class

Am capturing the data from the documents that are sent to the printer I use the class "Win32_PrintJob". I only need to get the number of copies of each document that was sent to print, for this I use the property 'PagesPrinted', but when trying to…
2
votes
1 answer

Why is the print job not executed until the python script has finished?

In my understanding, subprocess.Popen() should create a new process and does not block the main one. However, the following scripts do not print until they have finished. It appears that the print job is added after the button is pressed, but for…
AFoeee
  • 731
  • 7
  • 24
2
votes
0 answers

Printing to Receipt Printer: Java

I am trying to print a multilne string to a receipt printer, without showing the prompt. Currently have this: First, defining the printer, which name is in a txt file: PrintService[] printers = PrinterJob.lookupPrintServices(); for (int x = 0;…
2
votes
0 answers

converting URI to URL using python

I have a list of printers and I got their URI using pycups. now I need to know their IP addresses and to do that, I need to know their URL. How can I convert those URIs to URLs? for example, I have this URI:…
2
votes
1 answer

How to set fix directory for output file in V4 Printer Driver

I am working with V4 printer driver, i need to store output xps file to a specific folder instead of letting user select output folder.
Dr. Rajesh Rolen
  • 14,029
  • 41
  • 106
  • 178