table print « Graphics « Java Swing Q&A





2. Printing table    coderanch.com

Elizabeth, May I advise you to put this question in "I/O and Streams" forum? Generally there is an easy way of printing: getting reference to component, reference to default toolkit, getting reference to PrintJOb(returned by getPrintJob(toolkitreference), invoke the print job's getGraphics method, which returns a reference to a PrintGraphis. But my company does not like the quality, and I am to ...

3. Printing a table    coderanch.com

4. Printing of Nested Table is possible?    coderanch.com

Hi, I have a Nested table which is having tables with in tables. When I try to print these table. It doesn;t print the nested table. So, columns till the other table comes are printed, rest is ignored. Can anyone throw light on these. Is nested table printing possible. If so how to take care of such conditions. Any articles or ...

5. Printing tables takes a long time    coderanch.com

Hi, I am using the printerJob.printDialog() to print tables (I implemented a print method). The problem is that when the table has many entries printing takes very long time (printing table of 100 entries might take a couple of minutes). I am using the SwingWorker when printing in the following way: final SwingWorker worker = new SwingWorker() { public Object construct() ...