23/01/2010, 00:24
|
| | Fecha de Ingreso: septiembre-2009 Ubicación: Lima
Mensajes: 12
Antigüedad: 15 años, 2 meses Puntos: 0 | |
Respuesta: java Printing - 2 impresiones iguales -.-0 perdon solo tenia q buscar:
PrinterJob printJob = PrinterJob.getPrinterJob();
printJob.setPrintable(this);
try {
Esto -------> printJob.setCopies(2);
printJob.print();
} catch (Exception PrinterException) {
PrinterException.printStackTrace();
}
=) |