printing

Printing using full page (bypassing hardmargins/printing full bleed/borderless)

Is it possible to override printer hardmargins and use all of the page when printing a document programmatically with .NET? ...

virtual printer to print to specified file

Hi, is there any virtual printer that prints to files of tiff format - most importantly I can specify the destination file path in code, not by user input? Other image formats are acceptable, because I can convert it in code. I'm using a report control, which requires printer to print; I'm going to send the print result as fax with the ...

Flex Printing - Can it be done?

I want to know if anyone has successfully printed something from Flex. By successful I am talking about some sort of report or document or whatever. I know its fairly simple to print a component(which is a bit cheap) from Flex by using the printJob() class and passing a component. But I want to pass an object like a list or XML to pr...

Web based printing from a Django application?

Is there any recent developments in web based printing? I know using @media print in CSS, PDF based solution or iTextSharp but they are not really easy (except @media print) but alignment is little tricky if receipt contains barcodes or if I have to format for A5 etc., Is there anything new in HTML5 which will support this? I would li...

Sending Documents to Users' Print Queues Across the Network

I have a web service (available to employees in the organization via intranet only) deployed on IIS, and its job is to create a PDF file and place it into a folder located on the network. Before they generate the PDF, the User can choose a "send to printer" option. I know it's possible to send a file directly to a printer, but we hav...

Does Javascript has an effect to the printed version of the site?

Simple question, don't have a printer around, My client is asking if the hiddent elements of the web page(items that show up on click) will be printed out on the paper or will it be hidden? ...

Printing at specific DPI/resolution

I'm currently developing a printing application and I'd like to print at high quality/resolution and I couldn't figure out how. I iterated printDocument.PrinterSettings.PrinterResolutions and got this results: Kind - Resolution.X - Resolution.Y High - -4 - -1 Medium - -3 - -1 Low - -2 - -1 Draft - -1 - -1 Is it possible to print at...

Finding out max available print area

I'm trying to find out max available area on my printer. I've printed a simple rectangle trying out different boundary variables. My question is, why doesn't first two work correctly? They don't print a full rectangle on the paper, only the left and top sides are drawn. Why does only the third one prints a full rectangle? I was under the...

python web script send job to printer

Is it possible for my python web app to provide an option the for user to automatically send jobs to the locally connected printer? Or will the user always have to use the browser to manually print out everything. ...

C# WPF Paginator printer ignoring user's printer selection

I am using the following code in my project. The print dialog shows, but it always prints on the default printer regardless of the user's selection. I have read similar topics but none of them seem to use the SerializerWriterCollator. What is the problem? PrintQueue printQueue = LocalPrintServer.GetDefaultPrintQueue(); ...

printing in the same line in java.

Hi there, I have a base class called Items and 3 derived classes, and within the Items base class i have a print function of the form public void print(){ System.out.println("ID " + id + " Title " + title + " <" + year + "> "); } and within every derived class I call the Items print function through super.print(); which is...

How to print heads of table on every page properly?

I need to print header of my html table on every page. After googling I've fount that placing table head between <thead></thead> and table body between <tbody></tbody> tags is just ehough... Enough if <td> in table head has same border-width: style property as <td> in <tbody> tag. If not, all vertical lines of table has the same border-w...

Fix text stretching when printing to a receipt printer with Java.

I am printing to some Epson receipt printers by implementing the Java Printable and placing my code into the print method. To draw the text to the printer I use Graphics2D.drawString. I am also drawing a rect to the printer to see how to compares to the text size when printing to other printers. When printing to the receipt printer the t...

ASP.NET C# Sending raw data to Zebra TTP 2030 printer and getting its status

Hello! I'm woking on a .net c# web app where I need to print on a zebra printer (TTP2030) text and barcodes. Using the RawPrinterHelper class from here http://support.microsoft.com/kb/322091 I pretty much got the commands to the printer, as a unicode string. So, to print a barcode I do string enq = Convert.ToChar(5).ToString(); string...

Printing python tkinter output

I am trying to print the contents of a python tkinter canvas. I have tried using the postscript method of canvas to create a postscript file, but I get a blank page. I know this is because I have embedded widgets, and these do not get rendered by the postscript method. Before I rewrite my program to create a more printer-friendly layo...

print friendly version of floated list

I have a list of phone extensions that I want to print a friendly version of it. I have a print css for it to print appropriately onto paper, the extensions are located within an unordered list, which are floated to the left. <ul> <li>Larry Hughes <span class="ext">8291</span></li> <li>Chuck Davis <span class="ext">3141</span></li>...

How to send Department ID and password to Canon iR / 3235 printer in code?

Our client has a Canon iR/3235 PCL5 printer that they want our asp.net mvc web application to print to. But the printer requires a department id and password interactively. Is there a way to set the id and password in code with the application when printing to it? ...

How to get "printer ready bytes" from a source in c#?

Hey everyone! I'm in a bit of trouble here, hoping you can help a fellow programmer out. I have an application that receives a pointer to raw bytes (plus length and stuff) and sends said raw data to a printer. This is important, I have no choice but to use this method to get any printing done. If I send a raw string, it will print wit...

Active printer problem in Printing word document through VB.net

Hi My printer name is \\abc\First Floor A-Block its taking name \abc\First Floor A-Block on NE04:. How should i print it Private oWord As Word.Application Dim lobjDoc As Word.Document Dim strFolder as String Dim pd As New PrintDocument Dim strPrintername as String oWord = CreateObject("Word.Application") oWord.DisplayAlerts = Word.Wd...

How to customize the printing while using Window.print ?

i want to print a invoice and i use a print.css by media=print and when i change the current stylesheet to print.css i could able to view what i should be printing without the titles and content left aligned. But still while i'm printing there is space in the top and left and its taking up whole a4 sheet and also the whole width of the ...