How can I make my frames to appear in the center of the screen when I compile
the application? The reason is that everytime that I compile my application
my frames appear on the left top corner of my screen. If there is a way to
do this?
Printable View
How can I make my frames to appear in the center of the screen when I compile
the application? The reason is that everytime that I compile my application
my frames appear on the left top corner of my screen. If there is a way to
do this?
frame.pack();
Dimension dim = frame.getToolkit().getScreenSize();
frame.setLocation(dim.width/2 - frame.getWidth()/2, dim.height/2 -
frame.getHeight()/2);
frame.show();
PC2
alex <cad1374@yahoo.com> wrote in message news:39ec4465$1@news.devx.com...
>
> How can I make my frames to appear in the center of the screen when I
compile
> the application? The reason is that everytime that I compile my
application
> my frames appear on the left top corner of my screen. If there is a way to
> do this?
>