Printing is a process for reproducing text and image, typically with ink on paper using a printer.
99
votes
8answers
53k views
How to flush output of Python print?
I would like to force Python's print function to output to the screen.
76
votes
6answers
91k views
Simplest way to print an array in Java
What's the simplest way of printing an array of primitives or of objects in Java? Here are some example inputs and outputs:
int[] intArray = new int[] {1, 2, 3, 4, 5};
//output: [1, 2, 3, 4, 5]
...
48
votes
5answers
19k views
HTML Print Header & Footer
Is it possible to print HTML pages with custom headers & footers on each printed page?
I'd like to add the word "UNCLASSIFIED" in red, Arial, size 16pt to the top and bottom of every printed ...
39
votes
4answers
12k views
how to print to stderr in python?
I have come across at least three ways to do this:
print >> sys.stderr, 'spam'
sys.stderr.write('spam\n')
from __future__ import print_function
print('spam', file=sys.stderr)
It seems ...
37
votes
5answers
7k views
What's the best approach to printing/reporting from WPF?
I have an upcoming project which will have to be able to print simple reports from its data. It'll be WPF-based, and I'm wondering which way to go.
I know that WPF introduces its own printing ...
34
votes
8answers
24k views
How do I keep Python print from adding spaces?
In python, if I say
print 'h'
I get the letter h and a newline. If I say
print 'h',
I get the letter h and no newline. If I say
print 'h',
print 'm',
I get the letter h, a space, and the ...
32
votes
2answers
550 views
Use a handheld bluetooth printer with android
I have a bluetooth Handheld printer that I am able to communicate to using a SPP connection from my Mac(using Coolterm).
When I'm trying to do the same from Android (using platform 7) I am running ...
31
votes
16answers
62k views
Print <div id=printarea></div> only?
How do I print the indicated div (without manually disabling all other content on the page)?
I want to avoid a new preview dialog, so crating a new window with this content is not useful...
The page ...
30
votes
3answers
6k views
Why doesn't System.out.println work? (in Android)
I want to print something in console so I can debug it. But for some reason, nothing prints in my Android application. How do I debug then?
public class HelloWebview extends Activity {
WebView ...
30
votes
2answers
7k views
How do I flush the PRINT buffer in TSQL?
I have a very long-running stored procedure in SQL Server 2005 that I'm trying to debug, and I'm using the 'print' command to do it. The problem is, I'm only getting the messages back from SQL Server ...
27
votes
6answers
2k views
Why is printing to stdout so slow? Can it be sped up?
I've always been amazed/frustrated with how long it takes to simply output to the terminal with a print statement. After some recent painfully slow logging I decided to look into it and was quite ...
24
votes
7answers
1k views
Suggestions for debugging print stylesheets?
I've recently been working on a print stylesheet for a website, and I realized that I was at a loss for effective ways to tweak it. It's one thing to have a reload cycle for working on the on-screen ...
22
votes
7answers
13k views
Landscape printing from HTML
I have a HTML report, which needs to be printed landscape because of the many columns. It there a way to do this, without the user having to change the document settings?
And what are the options ...
22
votes
6answers
4k views
How do I print an HTML document from a web service?
I want to print HTML from a C# web service. The Web Browser control is overkill, and does not function well in a service environment, nor does it function well on a system with very tight security ...
21
votes
5answers
15k views
How do I hide an element when printing a web page?
My Problem is when i click print option On my webpage it is print the webpage but
"The Print Link Lable Also Visible On webpage".
So Please Give The Javascript Or HTML code To Hide The LInk Button ...
20
votes
5answers
3k views
CSS Printing: Avoiding cut-in-half DIVs between pages?
I'm writing a plug-in for a piece of software that takes a big collection of items and pops them into HTML in a WebView in Cocoa (which uses WebKit as its renderer, so basically you can assume this ...
20
votes
7answers
5k views
How to see the print media CSS in Firebug?
Firebug is an excellent tool to to show a screen media CSS for some HTML element, but is there a way to look at the print media CSS too? Or is there any other tool to see the print media CSS?
20
votes
6answers
9k views
Print a file skipping X lines in Bash
I have a very long file which I want to print but skipping the first 1e6 lines for example. I look into the cat man page but I did not see nay option to do this. I am looking for a command to do this ...
20
votes
7answers
4k views
How are echo and print different in PHP? [closed]
Possible Duplicate:
Reference: Comparing PHP's print and echo
Is there any major and fundamental difference between these two functions in PHP?
18
votes
2answers
14k views
Python: How to print a class or objects of class using print()?
I am learning the ropes in Python. When I try to print an object of class Foobar using the print() function, I get an output like this:
<__main__.Foobar instance at 0x7ff2a18c>
Is there a way ...
17
votes
6answers
21k views
How to get Printer Info in .NET?
In the standard PrintDialog there are four values associated with a selected printer: Status, Type, Where, and Comment.
If I know a printer's name, how can I get these values in C# 2.0?
17
votes
20answers
11k views
+50
Printing a PDF from a .NET Service
It's the "printing question guy" again. Looking for a third-party solution to print PDFs, preferable from a service. I have seen some arguments against it, but due to our use case, this really is ...
16
votes
8answers
34k views
How do I print an IFrame from javascript in Safari/Chrome
Can someone please help me out with printing the contents of an IFrame via a javascript call in Safari/Chrome.
This works in firefox:
$('#' + id)[0].focus();
$('#' + id)[0].contentWindow.print();
...
15
votes
2answers
1k views
Printing on roll paper
I am using C# with Winforms. I am trying to print bills on a paper roll. The width of the paper is 3in but the length of the paper is dynamic (its a roll paper). The length depends on how many items ...
15
votes
6answers
4k views
Is there a way to dump a stack trace without throwing an exception in java?
I am thinking of creating a debug tool for my Java application.
I am wondering if it is possible to get a stack trace, just like Exception.printStackTrace() but without actually throwing an ...
15
votes
6answers
54k views
ReportViewer Client Print Control “Unable to load client print control”?
Has anyone come across this issue?
Seems MS have broken it with their own update:
A number of people have reported
problems using the ActiveX print
control in the report viewer after
...
14
votes
8answers
17k views
How to make a HTML Page in A4 paper size page(s)?
Is it possible to make a HTML page behave, for example, like a A4-sized page in MS Word?
Essentially, I want to be able to show the HTML page in the browser, and outline the content in the dimensions ...
14
votes
7answers
577 views
Is there a way to track if a user prints a web page?
Is there a way to track if a user prints a web page?
Thanks,
Graham
14
votes
5answers
2k views
How can I hook into Perl's print?
Here's a scenario. You have a large amount of legacy scripts, all using a common library. Said scripts use the 'print' statement for diagnostic output. No changes are allowed to the scripts - they ...
14
votes
4answers
23k views
Print existing PDF (or other files) in C#
From an application I'm building I need to print existing PDFs (created by another app).
How can I do this in C# and provide a mechanism so the user can select a different printer or other ...
14
votes
9answers
3k views
How do I do advanced printing from a web application?
I have been researching options for printing report-like data via a web application. Some options that are viable are writing PDFs, Excel XML, dumping HTML to Excel, or using a tool like activePDF ...
14
votes
4answers
27k views
How can Print Preview be called from Javascript?
I have a page that is supposed to launch the Print Preview page onload.
I found this:
var OLECMDID = 7;
/* OLECMDID values:
* 6 - print
* 7 - print preview
* 1 - open window
* 4 - Save As
*/
var ...
13
votes
1answer
243 views
How to produce pdf files from QGraphicsScene with copyable text?
My code produces pdf by rendering QGraphicsScene content onto properly initialized QPrinter.
While dealing with application such text can be edited, copied into clipboard etc. How can I produce pdf ...
13
votes
4answers
4k views
Is there a way to get a web page header/footer printed on every page?
Based on my research, it seems that what I want to do is not possible, but in case something has changed, I wanted to check to see if anyone had come up with a way to do this.
I have a web app that ...
12
votes
4answers
3k views
How to print binary tree diagram?
How can i print a binary tree in java so that the output is like:
4
/ \
2 5
My Node:
public class Node<A extends Comparable> {
Node<A> left, right;
A data;
...
12
votes
4answers
4k views
Python - The difference between sys.stdout.write and print
My question is whether or not there are situations in which sys.stdout.write() is preferable to print. Such as it having better performance or resulting in code that makes more sense.
12
votes
7answers
1k views
How to convert a printer driver to a stand-alone console application which can generate a printer file containing the bytes to be sent to the printer?
I have a situation where the only way to generate a certain datafile is to print it manually to FILE: under Windows and save it in a file for further processing.
I would really like to have a small ...
12
votes
4answers
1k views
Best Practise for Writing a POS System
I'm putting together a basic Point of Sale (POS) system in C# that needs to print to a receipt printer and open a cash drawer. Do I have to use the Microsoft Point of Service SDK?
I've been playing ...
12
votes
8answers
19k views
Can a PDF file's print dialog be opened with Javascript?
I know how to open a webpage in a new window and add javascript so the print dialog pops up. Is there a way to do a similar thing with a PDF file?
12
votes
7answers
2k views
Good rules for setting up print css?
I'm looking for any suggestion/rules/guides on making a decent print css for when a webpage is printed. Do you have any to offer?
12
votes
9answers
9k views
“Silent” Printing in a Web Application
I'm working on a web application that needs to prints silently -- that is without user involvement. What's the best way to accomplish this? It doesn't like it can be done with strictly with ...
11
votes
3answers
333 views
How to avoid page breaking when printing long lists
I'm doing some styling for a printable brochure on my client's site, which could potentially contain long unordered lists of information.
My issue is when printing in Firefox the entire <UL> ...
11
votes
6answers
716 views
Recommendations for the most useful Delphi TStringGrid (Grid) replacement
One of the weaker areas of Delphi are the grids (eg TStringGrid) where, although it does a good basic job, it becomes harder when you need to print it or customise its appearance. I've used it for ...
11
votes
1answer
4k views
How to print in iOS 4.2?
I want to integrate the print functionality in my app.
The document I want to print will be in .doc or .txt format.
I am not very experienced in iPhone development yet, so finding it difficult to ...
11
votes
5answers
32k views
Print PDF from ASP.Net without preview
I've generated a pdf using iTextSharp and I can preview it very well in ASP.Net but I need to send it directly to printer without a preview. I want the user to click the print button and automatically ...
11
votes
9answers
6k views
Printing Labels from ASP.Net Page
I am working on an ASP.Net web application that must print dynamically created labels on standard Avery-style label sheets (one particular size, so only one overall layout). The labels have a variable ...
10
votes
2answers
101 views
Mathematica's spacing of symbol accents when typesetting mathematical formulas
Mathematica appears to have difficulty horizontally aligning accents (e.g. bars, hats, and tildes) when placed on top of certain mathematical symbols.
Here's a simple example:
Using the ...
10
votes
1answer
648 views
Printing Firemonkey on Mac OSX
How can I print documents with the newly released Firemonkey framework?
10
votes
4answers
581 views
Preventing Page Breaks in a Table When Printing
I have a page that I'm trying to set up for printing. This page contains a large number of individual tables. The tables are of varying size but, in general, I can fit 2.5 to 3 tables on each page. ...
10
votes
3answers
207 views
Minimum-Waste Print Job Grouping Algorithm?
I work at a publishing house and I am setting up one of our presses for "ganging", in other words, printing multiple jobs simultaneously. Given that different print jobs can have different ...