I have a postscript file and want it to be printed on a IPP capable device (or CUPS server). What is the minimal code and dependencies I could get away with to do that.
Using LPR or libcups gives me lot of cross-plattform dependencies. So my first approach was to implement a minimal subset of IPP (the protocol used by cups and many mode...
This is a two-part question:
1.
The original .NET print classes (in System.Drawing.Printing) are not supported on the server side. (See http://msdn.microsoft.com/en-us/library/system.drawing.printing%28VS.80%29.aspx )
I think that the newer XPS-based printing classes (in System.Printing) are supported on the server side, e.g. in ASP....
Cans someone point in the write direction for printing barcode labels using Java? I can use the barbecue library (http://barbecue.sourceforge.net/) to generate them bar codes as images, but I need a way to put the image (and human readable caption) into an Avery document template for printing.
...
Is there any way to set the default page print size in an ASP.NET report viewer control. I'm having an issue in which some users are forced to change the page size or scale in order to print correctly. I'd like to just make it so they can just click Print and it'll go. Thanks in advance.
...
Hello,
I have a report say,
Sno Address Name Age
when users click on Print button, they should be able to print the respective report
Can anyone help me how can i handle this in php, as i generate this report in php
I get all the info from table(MySql)
Thanks for the help
...
Can we change printer settings on run time
in SSRS 2008.
If a parameter pass which can change the Page Setup of a Page.
Like For ex:
if a report is on Legal Size paper
but i want to print on A4 Landscape Or Legal on run time.
it depends on my choice.
...
Hey all. I am troubleshooting a thermal printer issue when printing over bluetooth. The printer in question is Extech 3750T and the software is running on Windows CE. The driver is implemented on top of Winsock and is written in C++. As far as I can tell the connection housekeeping is all according to spec.
The issue seems to be that so...
What is the best Windows program to print out source code (more generally, text files)? I'd like the following features:
Includes line numbers
Option of printing 2 or 4 pages on a single sheet of paper.
Header includes filename and timestamp.
...
Anybody know more about print stylesheets than I do.
I'm working on a printable list of events, the printer prints one page fine, but cuts off some of the text on the bottom, then it print a second blank page
I've tried everything I know but am at a loss.
here's the link
...
HiI am using C# WPF webbrowser control to show html file in my local machine, I added a print feature to my application by executing print command of webbrowser control, but default behavior of Internet Explorer is to print file url in the bottom of the screen , can I turn header and footer printing for my control? Have WebBrowser contro...
We have a virtual printer (provided by a 3rd party) that is getting assigned to an invalid local printer port. The printer is always local (we aren't dealing with a remote print server or anything like that). I'd like to create a new local port (specific for our application), then configure the printer to be assigned to that port inste...
I tried to create a simple HTML page as below
<html>
<a href="javascript:window.print();">Print this page</a>
<div>
something
something
</div>
</html>
After clicking the "Print this page", the pop-up print dialog is quite simple. There is no preview in the dialog.
In Google Calendar, user can print calendar. In...
I am trying to print a portion of the page in FF3. This works fine in IE7. In FF, the page correctly changes to the part I am trying to print, but the Print Dialog never appears. Here is my code:
function PrintPage() {
var fullPage = document.body.innerHTML;
document.body.innerHTML = document.getElementById('content').innerHT...
Hi guys,
I am looking for solution for client side printing from our java web application JSF/JSP.
Rightnow we are using Crystal Report XI R2, and exported to PDF then displayed on client side.
The downside with this PDF approach is user will be able to SAVE the PDF and reprint again later. We want to disable the capability to SAVE th...
I want to capture following attributes from print server spool on print of any page. i am able to capture 3 of 4 attributes through these APIs(FindFirstPrinterChangeNotification, FindNextPrinterChangeNotification). but still i am not able to get data of file(so i can keep the thumbnail of this file by page by page)
Computer Name - DONE
...
I want to capture following attributes from print server spool on print of any page. i am able to capture
3 of 4 attributes through these APIs(FindFirstPrinterChangeNotification,
FindNextPrinterChangeNotification). but still i am not able to get data of file(so i can keep the thumbnail of this file by page by page)
Computer Name - D...
Hello,
I am working on a Silverlight web application that creates PDF documents. We want our clients to print these PDF documents but we do not want them to see it or save it locally.
Is there a way to send PDF data directly to client's printer without opening it in client's browser?
Please advice.
...
In my C# application, I'm attempting to generate a print preview without the progress dialog appearing on screen.
I believe you can use PrintDocument.PrintController to prevent this when printing for real (i.e. not a print preview), however it doesn't seem to work when performing a print preview.
My code is as follows:
public FrmDeliv...
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 page, regardless of the content.
To clarrify, if the document was printed onto 5 pages, each page should have the custom header & footer.
Does...
I wrote a simple PHP application to create salary cheques for the company employees.
The interaction between db & app is nice, the data is cached & the performance is high enough. So, what's the problem?
I need to provide the ability to print the whole cheques by just one click for the end-user. printing such a large HTML file is not ...