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
0
votes
2 answers

Change Orientation to xlLandscape without first print preview

I have code that includes changing some of the .PageSetup variables. I'm having issues where I use this code Sub Test() Dim ws as Worksheet Set ws = ActiveSheet With ws.PageSetup .Orientation = xlLandscape End…
Jason Brady
  • 1,560
  • 1
  • 17
  • 40
0
votes
1 answer

BRAutoSetup quit unexpectedly - when adding the CUPS printer driver

During the installation of a new Brother printer on my Mac, I had an unpleasant alert window, that BRAutoSetup quit unexpectedly and was unable to add a printer in my network. Like these ones:
brian
  • 509
  • 3
  • 14
0
votes
0 answers

Is possible to get the local printers with javascript?

I need to get a list of the local printers installed on the machine/computer. Is it possible?
Luís Almeida
  • 163
  • 11
0
votes
3 answers

Receipt printer - print automatically when someone placed an order?

I have bought a receipt printer and connected to Serial COM1 on my computer. I want to print a receipt automatically when someone placed an order online. How can that be done? I developed a shopping cart website in PHP / MySQL; the server located…
user622378
  • 2,318
  • 6
  • 42
  • 63
0
votes
2 answers

Crystal Report Asp.net print option

i have an ASP.Net application with crystal reports. when i click on the print icon on the viewer, export to PDF appears. i added a button to custom print the generated report. System.Drawing.Printing.PrintDocument cprPrinter = new…
Georgian Citizen
  • 3,727
  • 6
  • 38
  • 46
0
votes
0 answers

How to print image in thermal printer using Android?

I need to print a image using thermal printer. Now I am able to print text using below code, private fun printBill() { Thread { try { val sock = Socket("192.168.100.99", 9100) val oStream =…
byteC0de
  • 5,153
  • 5
  • 33
  • 66
0
votes
1 answer

Printer OID does not work on every printer

Hello I was asked to write a program to ask every printer in the network for there, name, location, and CMYK toners(how much percentage are left). I serched for the OID'a and everything was working. Now that i have the program that gets the data…
Scarlet
  • 5
  • 5
0
votes
1 answer

Copy all printers to new machine using powershell

I manage about 600 computers, and we are replacing most of them. The old computers have a list of printers installed that are specific to that PC. When I replace the computers, I would like to copy all of the printers from the old machine to the new…
cooten
  • 1
  • 2
0
votes
1 answer

Tomcat Server is not loading network printers

I want to get the list of all the printers including network printers. It worked and got all the printers when the project was run on eclipse. But when i deployed the war in tomcat host manager and it loaded only the local printers. My code is…
0
votes
2 answers

Crystal Reports loads very slowly if printer is invalid

In Crystal Reports, if another developer designed a report, I see the error "This report uses an invalid printer. The default printer will be used instead." I noticed that it takes a VERY long time to open reports programatically when they have…
Shawn
  • 165
  • 5
  • 13
0
votes
1 answer

How to print a docx file to a printer using Node.js

I am trying to write a program in node.js that will allow the user to print a docx file to the printer. anyone that can show me how its done in Node.js?
Noman Abid
  • 63
  • 1
  • 1
  • 10
0
votes
2 answers

how to print € symbol with star micronics?

i have star micronics and im implementing SDK in my app, but i cant print the € symbol [mutableData appendData:[@"\x1b\x1d\x74\x04 123" dataUsingEncoding:NSMacOSRomanStringEncoding allowLossyConversion:YES]]; but print other character also try…
0
votes
1 answer

Java servlet - get list of local printers

How we can get list of local pc printers by java servlet running on other machine. The web application running on Development server, i want to read the list of printer where the application is accessing. Thanks in Advance.
0
votes
0 answers

How to get printer PHYSICALOFFSETX with script

Actually I need a script to return all of these : PHYSICALOFFSETX (112) PHYSICALOFFSETY (113) PHYSICALWIDTH (110) PHYSICALHEIGHT (111) I started with the python win32ui built into eventghost, but that failed due to a dependency I can't fix. Every…
alfadog67
  • 831
  • 7
  • 28
0
votes
0 answers

How Windows looks for shared files, printers, etc

I have a big problem finding information on how Windows search for resources (shared files, printers, etc) in more detail. I am looking for information that I could present in the form of an algorithm for a presentation to school. If anyone has such…