Title: | JAVA |
Moderator: | KOALA::CIOT |
Created: | Mon Nov 13 1995 |
Last Modified: | Wed Jun 04 1997 |
Last Successful Update: | Fri Jun 06 1997 |
Number of topics: | 236 |
Total number of notes: | 1251 |
Is this the correct place to report problems with JAVA on Digital UNIX ? The program below does not display anything on OpenVMS VAX after redirecting DISPLAY (this setting is ok because ico and other AWT programs work fine). I have tested this with serveral machines and different VAX/VMS and DECWindows versions. No problems were encountered with Digital Unix, OpenVMS Alpha, and Intel PC using Xcursion... regards Wolfgang JDK1.1 Beta on Digital UNIX 4.0b. import java.awt.*; public class Info extends Dialog { protected Canvas Text; public Info(Frame Elter,String Titel) { super( Elter, Titel, false ); Text = new Canvas(); } public static void main(String args[]) { Frame f = new Frame("Info Test"); f.show(); Info d = new Info(f,"XX"); d.show(); } }
T.R | Title | User | Personal Name | Date | Lines |
---|---|---|---|---|---|
232.1 | PEACHS::GHEFF | Do you feel like swimming? | Tue May 27 1997 15:57 | 13 | |
According to http://www.unix.digital.com/products/internet/jdk102_main.html here's what you do: "If you identify a defect in this Java Development Kit, please use the bugreport.txt problem report template included in the kit to send a bug report to [email protected], specifying: The version of the operating system (uname -a) A description of the problem A test program to reproduce the problem." | |||||
232.2 | Thanx | MUNICH::WWERNER | When in doubt, do as the INTs do | Wed May 28 1997 04:35 | 0 |
232.3 | solution was: | MUNICH::WWERNER | When in doubt, do as the INTs do | Mon Jun 02 1997 11:40 | 3 |
One had to define DECW$CARD16_VALIDATE. Wolfgang |