23,239 questions
0
votes
1
answer
186
views
Zebra ZQ520 is not printing through code or Setup Utilities
I have an issue like that when I send ZPL commands through c# code to the printer via Bluetooth it prints blank label (after calibration) or sometimes only a peace of the expected text. Additionally, ...
1
vote
0
answers
12
views
Visual Studio/Intellisense auto-populating issue [duplicate]
Snippet from Visual Studio illustrating issue, ""Console.WriteLine(value: $"{decimalNotation:X}");""
Learning basics--have not encountered this issue before. I'm guessing ...
1
vote
0
answers
117
views
Disable page break until everything is printed. Print from website
I am using react-to-print with Nextjs.
Problem
This is the problem.
I don't want it to break and want it to continue and treat it as 1 page.
I have POS-80C thermal printer, and it cuts on every page.
...
-1
votes
1
answer
32
views
layout in printing whith win.print()
I work whith nwjs, i generate a tickets and i want to print and generate pdf. But layout is not correct my ticket are cut between one page and the next at the end of page.
this is my print function, i ...
1
vote
0
answers
59
views
Print tickets with ASP.NET Core or js
I have to print a ticket. It is important to ensure that each ticket is printed only once.
I have created a view where the image of the tickets is created and finally printed with javascript. The ...
2
votes
3
answers
381
views
How to hide Google Ads that appeared on our printed documents?
We have a website on Blogger to print legal documents but when printing we got a Google Adsense message in the top of the page as you can see in the document picture and same message appears in the ...
1
vote
1
answer
142
views
Setting duplex mode with SetPrinter() is not working
I try to set duplex (two-sided) mode on my printer, but calling SetPrinter() is not working:
bool SetDuplexMode(HANDLE hPrinter, short duplexMode) {
PRINTER_INFO_2* pInfo = NULL;
DWORD ...
0
votes
0
answers
62
views
VBA : Print CSV file as XLSX
I am trying to print a CSV file to look like a XLSX file. What I mean by that is that when I currently print I see :
Current CSV
and what I would like is:
Desired CSV
I already have 2 scripts:
...
0
votes
1
answer
122
views
window.print of iframe with pdf inside bootstrap modal
Hey guys I try to print a bootstrap modal which contains an iframe pointing to a local pdf file. The modal itself looks fine.
Problem is I want to print the modal with my own button (not the one in ...
1
vote
1
answer
174
views
How to change font on SATO CL4NX via SZPL
Here is the issue: We use the SATO printer for label printing in our factory. We use a Python development that sends a .prn file to the printer with both static and dynamic content. This .prn file ...
0
votes
0
answers
30
views
Turning user input into an int variable and printing doesn't work - Integer cannot be resolved
I'm trying simple things in eclipse, previously used tmcbeans for the moocfi course.
I want to print the user input as a number, but I get two errors:
import java.lang.Integer cannot be resolved (l.2)...
0
votes
1
answer
91
views
ASP.NET Core 6 MVC : return after window.print() not going through controller
I have a gallery of images on a webpage and a "Print" button which then calls the browser print using window.print().
<button class="button current" id="printButton" ...
1
vote
0
answers
39
views
How to add print scale to UIPrintInteractionController UI interface
I want to add print scale to UIPrintInteractionController UI interface.
example image
what I did achieve with my code
printControler = UIPrintInteractionController.shared
printControler....
1
vote
0
answers
43
views
I am unable to Print Project Code in PyCharm
As statedd above, I am unable to print Project Code in pycharm. I need to print the [tag:Python code] for a project. Not the results, simply the text. For example the code in the project below.
n = ...
0
votes
0
answers
124
views
mPDF Print Alignment Issue with Pre-Printed Form Shifting on Subsequent Prints (Epson LQ-690)
When using mPDF to generate a sales invoice PDF that aligns with a pre-printed form, the alignment is perfect on the first print after resetting the printer. However, when printing the same or any ...
0
votes
1
answer
50
views
I have 40 rows in a SQL database. I want to show 15 rows per page. But when I run the following code, it just print top 15 rows again and again
while (rdr.Read())
{
if (itemCounter < itemPerPage)
{
e.Graphics.DrawString(rdr["cCode"].ToString(), new Font("Arial", 11, FontStyle.Regular), Brushes.Black, new ...
1
vote
1
answer
82
views
Swift Cocoa; printOperation() does not run in Sonoma
I have a Swift Cocoa program that print a NSView. It work perfectly fine in Monterey but does show the print panel in Sonoma. I cannot find the problem. Here are the 4 errors:
Failed to connect (...
0
votes
1
answer
223
views
Flutter can't scan bluetooth devices
So i have an POS app that can print a receipt to customer, and i use this package to scan the bluetooth devices : https://pub.dev/packages/flutter_blue_plus
it work on IOS devices but when i switch to ...
1
vote
0
answers
27
views
Undocumented Prescribe commands?
I have several Kyocera Prescribe print jobs from a production environment (printing for several years). Some of these files contain commands+parameters which are not documented. (Rather the used ...
0
votes
0
answers
215
views
Add a watermark during printjob by C++
I'm working on a C++ application and need to add a watermark to documents during the printing process. Specifically, I want to intercept the print job, add a watermark, and then proceed with printing. ...
0
votes
2
answers
502
views
flutter won't print anything on the debug console
In Visual Studio Code, programming in Dart as a part of a Flutter course, no prints are shown in the debug console when hot reloading, only the "Reloaded..." message.
When creating a flutter ...
0
votes
1
answer
30
views
Python Print() Function Problem - Repeating a Printed Value on the same line
It's my first time on stack so if you notice that i'm not following a certain etiquette please point it out.
I do not get upset, do not worry about my feelings.
Not new to I.T. or programming but ...
0
votes
0
answers
52
views
Print View: Why Print view in chrome have half empty and content goes in next page?
I am try to print CR-80 card that is already printed but I only print values.
for setting Alignment when I increse margin/padding - [top] but last values goes to next page.
NOTE: I have removed and ...
1
vote
0
answers
80
views
AOSP 6.0 , init process , try print call stack
Now I am learing aosp 6.0 code .
When i read init process code , which on the path of system/core/init/ , I want to print function call stack .
I try write the code on init.cpp
#include <utils/...
-1
votes
1
answer
45
views
Java PrinterJob prints blank pages
I tried printing for the fiest time and found these code snippets:
package main;
import java.awt.print.Book;
import java.awt.print.PageFormat;
import java.awt.print.PrinterException;
import java.awt....