Hello Does anyone know if it is possible to programmatically maximise JFrame ? There appears to be a setState(int state) accepting Frame.Normal and Frame.Iconified... but no maximised.
Hi Martin, there is nothing that is available till jdk1.3 that can maximise a JFrame programmatically, but you have a setExtendedState() available in jdk1.4 that will do your stuff. Amit