I tried to center my dialog (i am using java 1.3) but it does not seem to work. i tried all below ways..
dialog.setSize(100, 100);
dialog.setResizable(true);
dialog.setLocation(150, 250);
dialog.setLocationRelativeTo(dialog.getParent());
the size of the dialog does not change when i change values in setSize method. The location does not change when i change values in setLocation method. It is very old code so i am not much sure what to do or how to get it workign..