Hi,
Call this method. Pass the Frame as parameter
<pre>
public void centerFrame(Frame frame)
{
//Center the window
Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
Dimension frameSize = frame.getSize();
if (frameSize.height > screenSize.height) {
frameSize.height = screenSize.height;
}
if (frameSize.width > screenSize.width) {
frameSize.width = screenSize.width;
}
frame.setLocation((screenSize.width - frameSize.width) / 2, (screenSize.height - frameSize.height) / 2);
frame.setVisible(true);
}
</pre>
Hope this solves ur problem
Regards,
Harsha
harshapr@comatindia.com