Is there anyway that I could use to remove the MINIMIZE and MAXIMIZE buttons up the top right coner of a window ?
Is there anyway that I could use to remove the MINIMIZE and MAXIMIZE buttons up the top right coner of a window ?
Are we talking AWT, or Swing?
It would appear not to matter if you are using Frame or JFrame.
If you are extending Frame or JFrame just use:
:)Code:this.setResizable(false);
Thanx for the advice ... but I've figured out to use a Dialog instead of a Frame to build the window.