Skip to main content
Filter by
Sorted by
Tagged with
1 vote
1 answer
44 views

I want to print data on a label. I created a ZPL template file and in my application i read that template file, look up a specific string, replace that string with data from my application and then ...
Nico Sz's user avatar
  • 133
0 votes
0 answers
40 views

I attempted to declare a print background task (PrintSupportExtensionBackGroundTask) in the appx manifest and register it with the system. However, when the foreground application (i.e., the main ...
Jeff325's user avatar
Best practices
1 vote
1 replies
51 views

I would like to print a 1/300 inch wide line with chrome (PDF). Unfortunately, the line is rounded up to a value of a css-pixel. (It has to be Chrome [not PRINCE XML], due to some advanced features…)
Adler's user avatar
  • 2,887
1 vote
1 answer
69 views

Use case: to dequeue plain string messages and print them line by line on to tractor feed paper without a form feed happening after each message is printed. Current solution (in code below) prints one ...
Josh Pudsey's user avatar
0 votes
0 answers
50 views

The Epson TM-m30III is configured like so in the utility app: I'm trying to print to the printer in a C# class using the Windows.Devices.PointOfService library. My code: public async Task ...
Bhav's user avatar
  • 2,287
1 vote
1 answer
78 views

I'm currently using the fillpdf Python library to fill a template PDF with generated data. I'm running this process on Ubuntu 20.04 server, trying to print to a Kyocera ECOSYS p4060dn. An example of ...
Ben B's user avatar
  • 45
1 vote
2 answers
150 views

This NumPy 2.2.6 script: import numpy as np a = np.arange(24).reshape(2, 2, 2, 3) idx = np.unravel_index(np.argmax(a, axis=None), a.shape) print(idx) will print: (np.int64(1), np.int64(1), np.int64(...
Paul Jurczak's user avatar
  • 8,630
1 vote
0 answers
40 views

We are using citizen/HP printer to print receipt. to print Bold characters uses following code string Bold = Escape + (char) 33; // u001b! string BoldStart = Bold + (char)8;// u001b!\b string BoldEnd =...
Chaitanya Kota's user avatar
0 votes
1 answer
158 views

I am trying to create a button that, when clicked, prompts the user to print a specific sheet of information. The script successfully saves the document as a PDF. It also manages to open the document ...
Jared Nel's user avatar
0 votes
0 answers
66 views

I am writing a program that involves printing Raw Printer Command Language (PCL) files wrapped in Print Job Language (PJL) commands. I print it via a port 9100 socket connection to the printer using ...
silverbrook4's user avatar
-1 votes
1 answer
169 views

I have 8 blocks of code: this, with a different path and site name. My goal is when the first word of the return is something other than "Success:" print the entire line, preceded by the ...
spinhead's user avatar
1 vote
1 answer
59 views

I have been working on a printer macro that uses Python to paste a letterhead onto a PDF message and then send it to the printer to print. In most of the companies' offices I set it up in, it works ...
silverbrook4's user avatar
2 votes
1 answer
52 views

I'm generating PDFs from a webpage using print styles and want to include localized page numbering (e.g., "Page 1 of 5" in English, "Side 1 av 5" in Norwegian) in the bottom-right ...
Tom S's user avatar
  • 676
1 vote
2 answers
427 views

Entering pandas set_option('display.max_columns, None) causes the Python print function to print just some of the columns, then, below that, come back and print the rest of the columns. I downloaded ...
JackRay's user avatar
  • 13
6 votes
2 answers
279 views

I want to create a UWP Printer application to set up a virtual printer that I then can select from windows print dialog following the Print Support App design guide as good as I can. I expect that at ...
CrazyEight's user avatar
1 vote
0 answers
175 views

I'm having issues properly referencing PDFCreator 6.0.1 in my VB project (Microsoft Excel). First off, I found out I simply couldn't with the free version, so I've started a free trial with PDFCreator ...
Joey56's user avatar
  • 35
0 votes
0 answers
136 views

I want to redirect output to a ScrolledText wigget in a tkinter environment, and use the print function to display strings with colors in the widget. My code prints the same string to the terminal and ...
Pierre Bonville's user avatar
2 votes
1 answer
75 views

I've been attempting to create a macro that creates a pdf for each worksheet beyond a certain sheet, that being sheet 6 onwards, but when it does create a pdf it creates them at different page sizes ...
Joseph Hannigan's user avatar
0 votes
0 answers
100 views

I am building a POS system in Electron JS 35.0.1 and Angular 19. I have installed electron-pos-printer 1.3.6. The printer is triggered by a websocket notification from my backend. Currently the ...
Mohid's user avatar
  • 133
0 votes
0 answers
124 views

In Delphi XE2, I'm using a TAdvStringGrid to print a simple report. Prior to submitting the job, I execute a TPrintDialog to select the target printer, but regardless of which printer I select in the ...
Steve Sneed's user avatar
1 vote
1 answer
131 views

I've been doing some testing with print CSS, and getting wildly different results in different browsers. Considering the example below, Safari prints "This viewport is more than 1200px" ...
Lennart Schoors's user avatar
1 vote
1 answer
61 views

This is my HTML structure of table I am printing out. <body> <div class="tableFormat"> <button onclick="window.print()">Print</button> &...
Steve's user avatar
  • 13
0 votes
0 answers
97 views

I am working on printing a simple HTML page using a TSC TTP-244 Pro label printer. The label size is 40mm x 60mm. I have already set the page size correctly in the printer setup, but when I print the ...
vinayak's user avatar
  • 23
0 votes
0 answers
99 views

I want to use the follwing script to print a PDF file directly in my web application: const blob = new Blob([fullArray], { type: 'application/pdf' }); const url = URL.createObjectURL(blob); // ...
Sam's user avatar
  • 1,704
0 votes
0 answers
38 views

To print from windows 10 in FMX TWebbrowser i use WebBrowser1.EvaluateJavaScript('window.print()') this JavaScript directly show print dialog. How to show print preview before opening print dialog? ...
Hosein Zakeri's user avatar

1
2 3 4 5
465