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?
Laugh, and the world laughs with you. Cry, and you just water down your vodka. Take credit, not responsibility
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);
this.setResizable(false);
Thanx for the advice ... but I've figured out to use a Dialog instead of a Frame to build the window.
Forum Rules