How to disable maximize button on a window?

Can anyone please tell me how to disable the maximize button (on the top right corner of a window)in java?
[127 byte] By [anub] at [2007-9-26 1:13:29]
# 1

Hi,

In JDK1.1.8 and above (if I am not mistaken) you can use the method: setResizable(false);

So yourframe.setResizable(false);

However in applets in the standard webbrowsers this won't work. (Netscape 4.7x, IE). As they use an older JDK version (lower than 1.1.8).

Martijn

MartijnR at 2007-6-29 0:10:19 > top of Java-index,Archived Forums,New To Java Technology Archive...