-
Bug
-
Resolution: Duplicate
-
P3
-
None
-
1.3.0
-
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)
======================================================================
- duplicates
-
JDK-4094565 Calling 'toFront()' on non-visible Window, Frame, and/or Dialogs is bad.
-
- Resolved
-