Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4275140

AWT FileDialog hung up win'98

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: P2 P2
    • None
    • 1.3.0
    • client-libs
    • x86
    • windows_98

      The FileDialog can be brought up OK but upon hitting the button "Cancel"
      or "Open" the win'98 on a laptop PC screen locks up and the system froze.
      On a Dell PC also running win'98, it displays the following error message: "
      #
      # HotSpot Virtual Machine Error, EXCEPTION_ACCESS_VIOLATION
      #
      # ErrorID: 4f53f57494e13120e43505002b7
      #
      ".
      The following program ran fine with jdk1.2fcs but not jdk1.3
      This program ran fine win WinNT
      -----------------------------------------------------------------------------
      import java.awt.*;
      import java.awt.event.*;

      public class fileDialog extends Frame {
          public static void main(String argv[] ) {
              fileDialog d = new fileDialog();
          }

          public fileDialog () {
      setTitle("FileDialog Test Frame");

      show();
      setSize(200, 200);

      addWindowListener(new WindowAdapter() {
      public void windowClosing(WindowEvent we) {
      System.exit(0);
      }
      });

      FileDialog openDialog =
      new FileDialog(this, "Open File...", FileDialog.LOAD);
      openDialog.setDirectory("/tmp");
      openDialog.setFile("foo");
      openDialog.setVisible(true);
             
          }
      }
      -----------------------------------------------------------------------------
      Roger Pham 10/23/99


      Red status tag removed, Roger Pham 11/2/99

            dmendenhsunw David Mendenhall (Inactive)
            rphamsunw Roger Pham (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: