I have a grid with one fixed column and many other columns. When i do a print (datagrid.Print()) on the second page i have the columns that would not fit onto the first page but without the fixed column (which is only printed on the first). I would like to repeat the fixed column on every page i print as it is the key to the data. Is thi...
I have been looking online for some time now, but I still haven't figured out how to print a PDF file in Delphi without showing the document itself, or a print dialog. I just want to open a file without showing it, and print it to the default printer.
I'm trying to print a batch of PDF documents, and there is no need for user interfere...
I have looked far and wide for a way to control the zoom aspect of the print preview dialog. Unfortunately, even after the following two lines of code:
PrintPreviewDlg.PrintPreviewControl.Zoom = 1.0D;
PrintPreviewDlg.PrintPreviewControl.AutoZoom = false;
The zoom drop down button is still set on "Auto" instead of 100%. This seems like...
Hey everybody,
I'm a newbie and need a little help. I am using this accordian script: http://www.nyokiglitter.com/tutorials/2columns.html
I would like to be able to print the whole accordion - open and collapsed.I saw this solution for jQuery:
http://stackoverflow.com/questions/186035/is-it-possible-to-print-a-div-that-is-hidden-by-j...
I'm planning to write a program that calculates the costs of users' print jobs and, for expensive jobs, prompts them if they want to continue printing anyway. (I know that there are existing utilities like GreenPrint that do something similar; my approach is a bit different.)
I am curious if there is a straightforward way to intercept X...
hi all
i have a page that has sections as divs with inner divs and content. The numberof divs varies alot from less than a page to many pages when printing.
I am using page-break-inside: avoid on every section div so that all sections are never printed / split accross 2 pages. (This i only get to work in firefox but that whole other...
I have a stored procedure running on sql server 2008 looping over a table of ~50 million rows, deleting records one day at a time (approx. 25,000 records a day). I want to be able to watch this occur as the process runs via print statements to the messages window. I'd like to be able to see a message each time a day's worth of deletions ...
Hi ,
I have a windows network (peer-2-peer) as well as Active Directory and I need to log the name of users who send any kind of print to the server.
I want to write a program to log their username and/or their respective IP and I'm familiar with c#.net and c++ but I haven't found any clue regarding how to solve my problem.
is there any...
i have a program that opens files, creates a PDF version by sending it to Adobe printer and saving the created PDF in a specified output folder. occassionally, when it creates the PDF, it throws a "Save PDF File As" dialog. since it does this for thousands of files, i don't think its an issue within the program. this dialog only appears ...
Hi, i'm just feeling that my head will explode unless someone help me with this problem:
I have stored a pair of TIFF images (related by a common key) for each one of almos 100.000 registries. And I create a PHP script that receives a key and echo the tiff image, so the browser return the tiff image:
<?php
// Determine the primary ...
I have two classes:
class Dog(object):
def __init__(self, name):
self.name = name
class Toy(object):
def play(self):
print "Squeak!"
I need to come up with a method called play(self, toy, n) for class Dog. It prints "Yip! " (with a space) followed by the output from toy.play on the same line. This happens n ti...
Which way is prefer ed and why to use for print, another css file with media="print" or @media print {....} in same file?
...
In SQL Server Reporting Services I would like to have an option to print all pages of the report, even though the report is split into multiple report pages in the user interface.
We currently have a report with the following:
one page per item
no option to print to pdf (intentionally removed per requirement; would otherwise be a poss...
Hi all,
I am having a problem with a page because its longer than one page it break a table so it would be printed in two pages.
I would need to stop this from happening, but I don't know how.
I tried
table { page-break-inside:auto }
tr { page-break-inside:avoid; page-break-after:auto }
Which I saw in another question here but no ...
Hi,
When viewing specific htmls that has several iFrames, firefox/IE8/safari doesnt print all content. The page consists of 3 iframes. One of the iframes seen blank in print (and also in print preview).
What is the cause for this and how can I fix it?
In IE7 this works fine.
actual content:
Content that is printed in firefox(or print p...
I use javax.print.PrintService to look up printer services on local machine.
Here is code to get printers:
PrintService[] services = PrintServiceLookup.lookupPrintServices(DocFlavor.SERVICE_FORMATTED.PRINTABLE, null);
Can i also get port name of printer (USB001, COM, LPT..) in java?
...
Are there any templates out there for formatting strings for printing like as in the following:
Private Sub PrintDoc_PrintPage(ByVal sender As System.Object, ByVal e As System.Drawing.Printing.PrintPageEventArgs) Handles PrintDoc.PrintPage
e.Graphics.DrawString("String to be printed", New Font("arial", 10), Brushes.Black, 1, 200) ...
How do I debug the problem where my IE doesnt print unless I stop splwow64.exe in a win server 2003 x64 bit machine.
...
I am trying to print a load of Zweckform 4737 labels from a web page. From reading around it sounds like it's more robust to generate a PDF than to use print stylesheets.
There are various libraries out there in various languages for doing this...but unless your specific label is supported, you need to know the exact measurements of th...
Hi, I'm trying to print a page that has an Iframe.
In the Iframe there is a frameset - this frameset isnt printed.
Reproduction - create an html page that has a frameset with one frame that points to google.
Create another html that has an iframe that points to the first iframe.
Print preview and printing gives blank frame.
Any solutio...