-
Bug
-
Resolution: Duplicate
-
P1
-
None
-
1.3.0
-
x86
-
windows_95, windows_98, windows_nt
PrinterJob.pageDialog() and PrinterJob.printDialog() methods
do not function and do nothing on win32, but okay on solaris.
Also this problem does not occur in FCS build "F".
You can reproduce this situation to run the following test
case.
import java.io.*;
import java.awt.print.*;
public class PDTest {
public static void main(String[] args) {
new PDTest().run(System.out);
System.exit(0);
}
void run(PrintStream out) {
PageFormat pf = new PageFormat();
out.println("PrinterJob.pageDialog()");
PrinterJob.getPrinterJob().pageDialog(pf);
out.println("PrinterJob.printDialog()");
PrinterJob.getPrinterJob().printDialog();
}
}
kenichi.kurosaki@Japan 1999-09-22
do not function and do nothing on win32, but okay on solaris.
Also this problem does not occur in FCS build "F".
You can reproduce this situation to run the following test
case.
import java.io.*;
import java.awt.print.*;
public class PDTest {
public static void main(String[] args) {
new PDTest().run(System.out);
System.exit(0);
}
void run(PrintStream out) {
PageFormat pf = new PageFormat();
out.println("PrinterJob.pageDialog()");
PrinterJob.getPrinterJob().pageDialog(pf);
out.println("PrinterJob.printDialog()");
PrinterJob.getPrinterJob().printDialog();
}
}
kenichi.kurosaki@Japan 1999-09-22
- duplicates
-
JDK-4275156 Printing using 1.2 API causes lockup on 95/98 but ok on Solaris and NT.
- Closed
-
JDK-4274071 BeanBox can't load jars and crashes with JDK-1.3fcs-G on Windows 95
- Closed