Printing is a process for reproducing text and image, typically with ink on paper using a printer.

learn more… | top users | synonyms (2)

1
vote
1answer
76 views

How can I print out an constant uint64 in Go using fmt?

I tried: fmt.Printf("%d", math.MaxUint64) but I got the following error message: constant 18446744073709551615 overflows int How can I fix this? Thanks!
-1
votes
1answer
28 views

print the sheets from the list if I check [closed]

I need the excel VBA I make a list of excel sheets in a workbook.column A:is the name of the activesheets(with hyperlink to every sheet);column B:I made the checkboxs.What I need is "when I check the ...
0
votes
7answers
53 views

How do you print an attribute of a subclass?

I am making a text based game and this is the file I am using to establishing the attributes of the rooms. Whenever I try to test this file out by printing the room description of room3 (print ...
0
votes
1answer
9 views

Hiding custom ItemProperties from print. Interop.Outlook

I have written an Outlook plugin that basically allows emails being received through Outlook to be linked with a website so that the email can also be view in the communications feature of the ...
0
votes
1answer
19 views

Code is not updating in Windows

I am running a C program using DEVC++ and CodeBlocks in Windows and the code is not updating. I just added a single printf message and it is not shown in the output. I tried clean,rebuild,recompile, ...
0
votes
1answer
28 views

Print button in Windows 8 Store app HTML + JS for Split Template app

I have an app made in WinJS for Windows 8 App store, and I use the Split Page template. So on the split page I have two colums the one named List column and the one named Item detail column. It is for ...
0
votes
0answers
40 views

Error printing iframe with Jspdf (Protocols must match)

I have this code to generate pdf with Jspdf: var pdfDoc = new jsPDF('p','in','letter') var verticalOffset = 0.5; var size = 10; var font = ['Times','Roman']; var wtext = 'Some text...'; var lines = ...
0
votes
1answer
36 views

Java Printer: send documents to remote printers

I'm dealing with a situation in which my swing application system has to send documents to a remote printer within a network that isn't the local one, but to which I have access (routers between ...
0
votes
0answers
16 views

Error during connect windows mobile with printer via bluetooth

I've a big problem. I would like to connect my windows mobile with printer via bluetooth. It`s small printer for receipts. I use this method to search and connect with it: private void ...
0
votes
2answers
33 views

Check default printer is on or not

How can i figure out whether default printer is on or not using vb.net or C# (on .Net 2.0) And what is the port number to which printer is attached. I am using PrinterSettings Class, but there is no ...
0
votes
0answers
6 views

AddPrintDriver fails

I've written a printer driver and I am working on a installer. I am using InstallShield. However, I find there is no easy way to install a printer driver or I am missing something. I am using a ...
0
votes
2answers
23 views

inline elements printing on new line

I have the following code: <div class="outsideDiv"> <div class="element1">Name: </div> <div class="element2">Something</div> <div class="element3"> - ...
0
votes
1answer
59 views

regular expression for commenting out all print statements in a file if followed by a particular string

I have a file that looks similar to this: <?php print "hello world" . "<br/>"; print "foobar" . "<br/>"; ... // Process parameter if ($var) { print $var . ...
0
votes
2answers
64 views

jQuery: Hide tr of child td that contains ul + print?

I have a <table> where certain <td> contain <ul> and I want it when a specific button is clicked, two things occur: Parent <tr> of children <td> that contain a ...
7
votes
1answer
150 views

Efficient way to count number of pages to print?

TLDR How can one efficiently determine the amount of pages that have to be printed? ** Just a note: I marked klugerama's answer as the answer to my question. I'm still open for other suggestions ...
-2
votes
2answers
25 views

Using php to send a MySQL table to a printer [closed]

sorry if this question isn't good enough. I'm still new-ish when asking questions here. I'm making a liability manager for my school, and they need to print out the report of all liabilities. I have ...
0
votes
1answer
24 views

View/Print function code from within GDB

I am trying to develop a simple text based user interface which runs some gdb commands. I want to user to be able to set and break/trace point at a certain area of the code and run some debug ...
0
votes
1answer
30 views

Printing of Java GUI

I have created a GUI in Java and it have one button name Print....On printing the GUI it get print properly but it takes very long time to print....please help me of how to reduce the waiting ...
0
votes
1answer
8 views

positioning a table for printing

Have a html-print I want to customize. I need to print text in a certain position in the bottom of the page to fit a template (printed paper). How can I position the last table exactely 2 inches from ...
1
vote
1answer
24 views

finding print status when printing with PrintDialog

I have used PrintDialog to print some visual object. PrintDialog printer = new PrintDialog(); printer.PrintVisual(barcodeCreator, ""); now i want to do some business logic if print is done ...
0
votes
0answers
18 views

Print iframe IE8 issue

How to change: _printIFrame: function() { var detailsFrame = document.getElementById("detailsFrame"); window.detailsFrame.focus(); window.detailsFrame.print(); }, So I can ...
0
votes
0answers
69 views

value cannot be null. parameter name :font

I am developing a an apllication to draw a chart and show legend in the chart. Here is what I have done so far. Without the legend part graph is drawing correctly. I am trying to draw legend like ...
1
vote
1answer
15 views

Intercept print data of DOS based printing

I have successfully used Redmon to intercept print data when the printing software uses windows based printing. But currently the software that I am trying to use Redmon with, is sending the print ...
3
votes
3answers
72 views

Is it possible to print without new line or space?

Let's say that I want to print 'hello' by 2 different print statements. Like: print "hel" print "lo" But python automatically prints new line so if we want it in the same line we need to - ...
0
votes
0answers
29 views

Not able to print more than 1 page of word document on windows 7 pc

We a have VB.Net application (desktop) which is prints Word documents (docx format) using OpenXML. This functionality works fine on Windows XP but on Windows 7 PCs it only prints one page then Word ...
0
votes
1answer
40 views

active reports always sends to default printer

I want to print to a network printer from active reports but it always prints to default printer without throwing error. Once I try to print with the .net printdocument library it print to specified ...
1
vote
0answers
22 views

issue with ios woosim bluetooth printing version iOS[2012.11.01]

I am using woosim printer for bluetooth version. I use it to print the different bills. I am using version iOS[2012.11.01]. In the previous version I was facing the issue that some portion was not ...
0
votes
0answers
31 views

KOGrid - Print option and Export to pdf and excel

I am looking for an option to export KnockoutContrib's KOGrid to excel and pdf. For print I use JQuery's printElement. It takes html as input and prints it. I am able to print it and also export to ...
0
votes
1answer
47 views

Splitting and printing with Perl

My Perl script is attempting to take in a command line argument that is a file name such as name.txt or hello.txt.exe and parse out the file extension based on the . delimiter, and print only the ...
0
votes
0answers
8 views

Javascript print is not printing entrire page

I am trying to print page. i am using javasript window print. but it's printing half page. header is not printing in print page. URL : ...
-2
votes
0answers
34 views

how to print an image on android with wifi printer [closed]

I can learn how to print an image in an android application with a wireless printer, I install an application on android to ensure communication between the printer and wifi android mobile
0
votes
3answers
31 views

How can I NOT truncate a long int/float when printing in Python

I have a long int and I don't want it to be truncated when I print it or convert it to a string. The following does not work: import pandas as pd b = pd.Series({"playerid": 544911367940993}, ...
0
votes
2answers
48 views

Simple page size setting when printing JTextPane?

I have a really simple Print function in my application that prints the contents of a Jtextpane. I want to set the default page size to A4 but after searching around I find lots of ways that involve ...
0
votes
0answers
13 views

Using udev to acquire printer details in Linux

I have a case where I am plugging in multiple USB printers, and there is no consistency in the naming/mapping of each printer. For example, when I connect two printers, they are assigned to ...
-1
votes
0answers
53 views

Is there any way to select a specific printer in Google Chrome via Javascript? [closed]

I'm plenty aware that this question HAS been asked before, but my particular situation made me decide to ask it again because of its potentially unique characteristics. First let's get this out of ...
0
votes
1answer
24 views

PHP print_r large array to variable not working

I'm trying to print_r a large array to a file to debug it. I've tried 2 methods: $arr = get_large_array(); file_put_contents('file.txt', print_r($arr, true)); and $arr = get_large_array(); ...
0
votes
1answer
50 views

vb.net printing error: print_printpage continues to loop even though e.hasmorepages = false

So here is my situation: First of all, all of my printing code is stored in a module, which is called when I click the print button. My problem is, my pages print fine the first time I print my ...
2
votes
2answers
44 views

Java - Printing to a receipt printer

I need to print a few lines to a receipt printer (Star TSP100). I can write the text to a file and use this line to print: Desktop.getDesktop().print(new File("test.txt")); The problem is that the ...
0
votes
0answers
10 views

How do I simulate an UIPrintInteractionController failure?

I have UIPrintInteractionController code that I am collecting metrics on. I don't have an AirPrint capable printer, I am using the Printer Simulator. I have successfully testing the successful ...
0
votes
0answers
13 views

How to reliably fit a WPF canvas to its container for print and screen

My program draws a diagram by creating a canvas and then adding various lines, boxes and labels etc. to it. It uses the ActualHeight / ActualWidth of the canvas' parent to find out how much space it ...
-1
votes
0answers
10 views

How to Intregate and print the H1500 Health Insurance Form with pre filled data under Web Application using Asp.Net 4.0 C#?

I want to integrate and print the H1500 Health Insurance Form with pre filled data under web application using Asp.Net 4.0 with C#. Please let me know if anyone have resolution.Thanks In Advance. ...
-1
votes
0answers
33 views

How to print bank passbook using java via passbook printer [closed]

I am developing a banking application and I need to print the user's account transaction in the Bank Passbook .if any of you guys have any experience in passbook printing, please post you suggestions ...
0
votes
0answers
10 views

Unable to retain the text in pdf file after printing which is having font properties as Identity H CID

I am having a pdf file which is having font properties set as Identity-H and CID fonts. After printing such kind of pdf files, I am unbale to copy the text from the pdf. If i copy and paste, i am ...
0
votes
0answers
21 views

Print Process is not working in IIS

I have a problem with printing PDF document from asp.net web application i am using the following code to print a pdf document.my pdf document is in a folder in the application ...
0
votes
0answers
20 views

Printing black and white images in HTML

I have a script which is generating a HTML page that I need to print. On top of the page is the logo of the company. It is a .bmp image saved as a monochrome .bmp. There is no color in it and the ...
0
votes
0answers
13 views

How to Read printer queue information using java [duplicate]

Is it possible to get the information from the printer queue and display the information into a document using java codes? And how to make a tray application based on this idea? Help me Thankz for ...
0
votes
2answers
20 views

Error Printing through iframe - 'Undefined' Error when using Ctrl+P

I have a document which pops up on the site within a JQuery Modal Box. The document has a print button at the end which just prints the document in the Pop-Up Box. I wanted to print the document, ...
0
votes
0answers
52 views

css @media print not working entirely

I have a scrollable div in my page and I want to print the whole content of it, without printing the rest of the website. I have a file called print.css with the code: /* print style for quiz */ ...
0
votes
1answer
60 views

Print the contents of a text file on the client's printer using asp.net

I am having a text file uploaded on the server. When a User Clicks on print button I want the file to be printed using his/her printer. Currently I am using the below code, but it is for the server ...
0
votes
1answer
62 views

Copy text file to usb zebra printer

First time using ZPL, I was googling my question but nothing so far. I have downloaded the ZPL II programming language pdf file, and try to print the first sample: ^XA ...

1 2 3 4 5 138