1. Printing a Dialog using PrinterJob coderanch.com |
2. How to print without seeing the print dialog box? coderanch.comHi, I'd like to print an html or rtf file to a printer without having the print dialog box poping out. I've been told that you could only bypass the print dialog box by playing in the peer win32. Where can I find it? I've been also told that jdk 1.2 offered the possibility of not having the dialog box pop ... |
3. Reporting and printing model coderanch.comI am developing a Swing based client-server application and realized that Java don't have much cheap (or even free) reporting and printing solution. Any expert here can share your experience with me? That's my basic idea: Client tier using Swing application to capture reporting criteria. Then package the criteria into an Report request object including the information of report type, criteria, ... |
4. Printer Prefs Dialog Confusion coderanch.comI have an app which runs in full screen mode. It doesn't change the resolution. Here is a code snippet - PrinterJob printJob = PrinterJob.getPrinterJob(); printJob.setPrintable(PaintingActionPanel.this); HashPrintRequestAttributeSet hprintRequestSet = new HashPrintRequestAttributeSet(); if (printJob.printDialog(hprintRequestSet)) { stuff n more stuff } When I used the printJob.printDialog() method, to show a native print dialog menu, it doesn't show up on the full screen JFrame. ... |
5. Print dialog coderanch.comHi, I'm trying to create a print dialog that includes a combination of application settings along with some of the settings from the standard print dialog. Specifically I want to implement the Printer area of the dialog. I figured out how to get the list of printers but have not figured out how to get the properties of the printer (where, ... |
6. Print a dialog box coderanch.com |
7. Extend\add to print dialog coderanch.com |
8. Printer Properties dialog coderanch.com |
9. Customize a Print Dialog coderanch.com |
10. Print - Extend the standard dialog coderanch.comHi all, I'm using the printerJob.printDialog() to print tables and maps. (I implemented my own PrintableTable & PrintablePanel classes). Today I play with the scale to make sure that everything fits into one page. I would like to give the user the option to choose weather he wants to print in the actual size, or to fit to the page size. ... |
11. Print dialog coderanch.comi have add a menu item print in the File Menu and when i click the print menu item the print dialog should open as it is opening in MsWord i am using the following code for the dialog to pop up , but it does not pop up, if anyone know how to resolve it, it would be great helpfull ... |
12. How to print from Default List Model java-forums.orgHeya guys so I've got a list of items in a default list model for example productlist = new ProductList(); productlist.addProduct("01", "Apples", 1.45, "Fresh Green Apples", true); and I've got everything working but now I've got a button "Print all items" and it's supposed to print every single item or element in my productlist to screen, or a pop-up window either ... |