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

BROWSER GETS FOCUS INSTEAD OF APPLET in JDK1.4 with build81

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P2 P2
    • 1.4.0
    • 1.4.0
    • client-libs
    • rc1
    • x86
    • windows_nt
    • Verified



      Name: mt13159 Date: 10/03/2001


      Reproducible with JDK 1.4 build 81, Netscape 4.76/IE 5.5

      Probelm Description
      ===================
        While loading Oracle Application, browser gets the focus
        instead of the Oracle Application which gets loaded in a
        separate frame.Applications's frame goes behind the browser.
        After loading Oracle Application user has to click on the
        frame again to get the application to the front. This seems
        to happen only on Windows and happens on both IE and Netscape.

      Steps to reproduce:
      -------------------
      [1] Bring up the test Application below
      [2] Verify that after loading the applications frame
          the browser comes in the front
      Here is the test case:
      ------------------- FrameTest.java start--------------------------------
      import java.applet.*;
      import javax.swing.*;
      import java.awt.*;
      public class FrameTest extends Applet {
              public void init() {
                      System.out.println("Inside init");
                      createFrame();
              }
              public void start(){
                      System.out.println("FrameTest started");
              }
              public void stop(){
                      System.out.println("FrameTest Stopped");
              }
              private void createFrame() {
                      JFrame f =new JFrame();
                      f.setBounds(getBounds());
                      f.getContentPane().add(new Label("Hello
      World"),BorderLayout.CENTER);
                      f.setTitle("Hello World");
                      f.setVisible(true);
              }
      }
      ------------------- FrameTest.java end--------------------------------
      (Review ID: 132979)
      ======================================================================

            son Oleg Sukhodolsky (Inactive)
            mthakore Mayank Thakore (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: