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

Inconsistent toFront() behavior of different platforms

XMLWordPrintable

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



      Name: boT120536 Date: 01/02/2001


      java version "1.3.0"
      Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.0-C)
      Java HotSpot(TM) Client VM (build 1.3.0-C, mixed mode)


      When running Sun's JDK1.3 on Windows ME, the toFront() method of the Window
      class doesn't consistently bring a window to the front; instead, it seems to
      affect only the taskbar. I tested it with the following code, which runs
      successfully on Windows NT4 using IBM's JDK1.1.8.

      import java.awt.*;

      public class Dumb
      {
        public static void main(String[] args)
        {
          Frame f;
          int i;

          try
          {
            while(true)
            {
              Thread.sleep(20000);
              f = new Frame();
              f.setSize(600,400);
              for(i=10; i>0; i--)
              {
                f.show();
                f.toFront();
                try {Thread.sleep(1000);} catch(InterruptedException Ie){;}
              }
              f.dispose();
            }
          }
          catch(InterruptedException ie){;}
        }
      }
      (Review ID: 114356)
      ======================================================================

            ehawkessunw Eric Hawkes (Inactive)
            bonealsunw Bret O'neal (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: