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

How to Log or Capture Print Driver Specific Preferences?

I'm trying to capture or log all the print settings for any given print job that I make on Windows (in particular from Photoshop, but I don't think that matters much). In particular, I want to log or capture the Printer Driver specific settings. I…
Coops
  • 13
  • 3
0
votes
1 answer

DevMode Structure

I have files I need to drive thru a print driver and save then as files. Can I programactly use the DevMode Structure to drive these files without openning the application it was created in? Also can I change the DevMode Structure values to change…
robblot
  • 395
  • 2
  • 5
  • 15
0
votes
1 answer

Printer driver which number repersent B5 pages in PCL

i want program a printer driver.use the pcl for my driver.PCL has one command represent the page types.in PCL number 9 represent A4.i want to know which number represent B5 in PCL.
pang1567
  • 125
  • 7
0
votes
1 answer

Printer adding script, can't specify default port

@echo off REM --------------------------------------------------------KC 122 MFP echo Installing KC 122 MFP cscript C:\Windows\System32\Printing_Admin_Scripts\en-US\Prnport.vbs -a -r IP_192.168.100.20 -h 192.168.100.20 -o raw -n 9100 rundll32…
0
votes
1 answer

Installing Printers with .INF in Windows x64 and NSIS

I create an Installer, with two printers netowrk with CUPS. In Windows x86 (32 bits), the printers are installed without problems, with driver, and all ok. But the problem is when i run the .exe in x64, i can detect the Arquitecture, i put the…
0
votes
3 answers

Removing text from output in Powershell

I am trying to remove part of the text that is returned from get-wmiobject, the text I am trying to remove is @{ShareName=PRT47} and I only want the printer name that is returned so the suffix if you will. I have tried different by attempting to…
0
votes
1 answer

Is there any way to tell a browser that your webpage is printer-friendly?

I have a webpage with a printer-specific stylesheet that I use to make sure it uses zero color ink and as little black as possible. However, there is one very important element that's not text which I need to show up: the logo, which is kept in and…
Ky -
  • 30,724
  • 51
  • 192
  • 308
0
votes
1 answer

Attempting to extract printers from users machine and then outputting to a text fill.

I am attempting to extract the printers from a users machine and then output to a text file but when I run the test I get a invalid procedure call or argument for this specific line of code. Set objOutputFile = objFSO.OpenTextFile(outFile,…
0
votes
2 answers

How to execute code from dynamic generated button

i try to make a gui (hta) which can install on a client, one or more printers from the printer server. the problem is when i create the button "install", the function is executed on form load and not by clicking on the button. i don't understand…
stuperman
  • 1
  • 1
0
votes
1 answer

Logging raw data from usb printer and using print spooler

I know similar question have been asked before like here and a few other places. but I want to ask something about the basic concepts. So, i have been assigned a project i have to make a "usb logger". The main function of the project is to capture…
Aitizazk
  • 332
  • 1
  • 4
  • 16
0
votes
0 answers

Connecting My Android app with wifi printer for printing bills

I am trying to print a set of values through a wifi printer without internet.How to detect the list of wifi printers and connect to them.The tough part is how to start printing when the data is sent from mobile android app.Sample code will be very…
Arun Anand
  • 11
  • 4
0
votes
1 answer

Header getting printed while printing to printers using javascript

Is there any good workaround for the following code that can be used to print to different printers such as receipt printer, id card printer and inkjet/laser printer? I dont want to use the pdf for saving the data and printing instead directly print…
Ayan
  • 2,738
  • 3
  • 35
  • 76
0
votes
0 answers

Button that calls print source specifies primefaces

I am printing a panel with this information primefaces button. But I need to send this impression with a smaller font, how do I do that in this code?
csf
  • 961
  • 3
  • 13
  • 28
0
votes
1 answer

full uninstall/remove of Windows printer driver - automation

what is the correct way of full uninstall of the Windows printer driver? I need to automate this process. For now I perform list of actions which requires one of even two rebooting: pnputil -e choose needed inf and run pnputil -f -d clean…
0
votes
1 answer

iText - generate PDF for Store Ticket Machine

I'm using iText 5.4.4 and I want to generate a PDF for a continuous paper ticket printer. My doubt is how to set the new Document to avoid splitting the pdf in several pages: Rectangle pagesize = new Rectangle(360f, 720f); Document document = new…