Name: diC59631 Date: 09/22/97
Calling java.awt.Frame.setResizable(false) on a Windows Frame does not disable the Frame's maximize button. This enables users to change the size of the frame by maximizing it.
company - Avesta Technologies, Inc. , email - ###@###.###
=========================================================
erik.larsen@Eng 1998-04-22 Here's another user experiencing the same problem.
1) Create a Frame or a JFrame with setResizable(false).
Verify that the frame doesn't resize, then click the maximise button.
2)
import java.awt.*;
public class Application1 {
public Application1() {
Frame frame = new Frame();
frame.setSize(new Dimension(400, 300));
frame.setResizable (false);
frame.validate();
frame.setVisible(true);
}
static public void main(String[] args) {
new Application1();
}
}
(company - Cromwell Media , email - ###@###.###)