printing

Print SSRS Report Automatically

I am fairly new to using SSRS and I would like to create a report that automatically prints to a specified printer when the report is generated. I found this question on SO and it mentions writing code in the Business Intelligence Development Studio that can "fire off" a print job. How might I do that? EDIT: Forgot the URL of the thr...

Can I print an HTMLLoader (pdf) in Adobe Air?

I'm using AlivePDF to create a PDF file, then save it to the desktop. I can then use an HTMLLoader to display my lovely PDF file. Now, the print button in Adobe Reader works fine. However, there will be young children using the app, so I'd like to have a big "Print" button right above it. I figured I could just start up a print j...

iPhone Bluetooth application to connect to a Bluetooth printer

Hi, Has anybody succeeded in developing a bluetooth application on the iPhone that prints to a Bluetooth printer? I have been investigating the feasibility of developing an iPhone application that could print to a Bluetooth-enabled printer. I've gone through the most of the postings in this thread and was confused by the mail exchange...

Reverse line feed or another solution for continuous feed out of sync (matrix)

I use continuous 5" form (preprinted) with my invoice application and it seems that many matrix printers do not support this 5" form length. Now the key problem is that while printing just one form, two other forms needs to be thrown out as well with linefeed to tear out, since the FF code causes continuous form to be out of sync. I need...

Is it possible to print a html page with something stuck to the bottom of the page?

Subject explains... ...

WPF: How can I programatically close a PrintDialog ?

How can I programatically close a WPF PrintDialog ? I tried to call Finalize on it trough reflection, and that does not close it either. Here is what I tried with: using System; using System.Reflection; using System.Threading; using System.Windows; using System.Windows.Controls; namespace WpfApplication15 { partial class Window1 : ...

Best tools [practices] for printing annotated image (TPicture) based documents from Delphi

It seems that most Delphi applications fit into two classes: Database-centric Applications that use Reporting Systems for all their printing needs, and applications that don't need printing. For those in the excluded middle (non-database printing, non-reporting system), there are components to help out. For example, I have been a Develo...

Strange Print problem with Hardmargin on first print only (WinForms)

We have a strange problem printing images and text. When we print FOR THE FIRST TIME on a machine, ONLY the background is shifted up and left, and is printed at the wrong location. The text is printed correctly. When we print the same again, everything is fine .... both bg and text .. ? Uninstalling and reinstalling the app or restarting...

Printing the Data in a NSTableView.

How would print what is in my NSTableView? The View uses core data so everything is stored and can be grabbed as an NSArray. But how would I go about printing it out? At the moment when you click the print button it just seems to take a picture of the view and print that. ...

command line tool for print picture?

My program need to print a curve, my solution is changing the curve into a picture, and this picture file (xxx.png) can be printed by using the default windows picture printing tool(right click the mouse on top of the file, and select print). but I don't want user do this job manually, I need a command line tool to do this: printPictur...

Mac OS X native printing from a Java desktop application

I would like to implement Mac OS X native printing in my Java desktop application. That is, this print dialog when the user chooses to print: which then expands to a dialog such as this: As I understand it, native Mac OS X applications can customise the 2nd dialog by adding an option in the lower drop-down ("TextEdit" in the screensho...

Aligning messageformat on printing a JTable.

I'm using this for the moment to print out my table, and it works. But I'm not really happy with the layout of the messageformatting, I would like to have both pagenumber and date in the footer, and date format aligned to the left side of the table, and page to the right. How can I do that? Been reading some stuff about overriding the P...

Best method for a webpage to access a mac's peripherals?

I'm building a web-based application that can use ActiveX Controls to print to a Thermal Label Printer (specific to shipping labels) in Windows environments, but I am racking my brain to figure out what the best method would be for OSX. Obviously ActiveX doesn't work on macs... Any ideas about where to start looking? A flash movie? A fi...

How do I print to the OS's default printer in Python 3 (cross platform)?

I have a Python 3 script that is going to be doing some regex substitution on some Rich Text Files (rtf) and I would like to be able to print out a whole directory's files on Windows, Linux, and Mac. I have done quite a bit of searching to no avail. Thanks in advance. ...

Bulk Printing from application in .net?

Hi, I'm working on a project for my companies intranet which requires that multiple attached documents to the main DTO of the project need to be autoprinted in the background. The problem is it's a web project and I want the printing to be done under the surface. Now because it's on an intranet only certain people can use it and I can s...

How do you print an associative array in dtrace?

The question pretty much sums it up. "dtrace 'print an associative array'" has exactly one google hit and the similar searches are equally useless. EDIT: If I were to use an aggregation, I'm not aware that I'd still be able to remove entries. My application requires that I be able to do things like: file_descriptors[0] = "stdin" fil...

Printing problem in C# windows app - Always prints to default printer

I have the following code to throw up a printer dialog box but no matter what printer I choose, it always prints to the default printer. How do I assign the users selected printer? (from the dialog window) PrintDialog pdlg = new PrintDialog(); // Show the PrintDialog if (pdlg.ShowDialog() == DialogResult.OK) { PrintDocument pd = n...

How can I produce a "print preview" of a FlowDocument in a WPF application?

Various WPF applications of mine display FlowDocument's. I'm able to print them, using the approach described in the answer to Printing a WPF FlowDocument. Now I'd like to add a "print preview" capability. In the normal case, I am printing the FlowDocument that is displayed in the Window, and so I wouldn't need a Print Preview then....

PHP support printer settings?

Hi all, In VB.net i heard about there is an option to change printer settings like page type and margins. when we want to print contents for a web apps we use javascript window.print() option, but i want to set page settings through php how it is possible? remember i want to take a print in client machine through browser not in a web se...

How to print contents of a Python Tkinter.Canvas control?

How would i print contents of a Python Tkinter.Canvas control? I've read that it is possible to print to a postscript printer from this control but examples are hard to come by. So, any ideas how what is needed to print the contents (including images)? If you've got a cross-platform method all the better! ...