Search:

Type: Posts; User: Prathiksha

Search: Search took 0.09 seconds.

  1. [SOLVED] Re: Adjust screen size and button arrangement for any computer screen

    Thank you...i searched in detail and finally found one function
    Toolkit toolkit = Toolkit.getDefaultToolkit ();
    Dimension dim = toolkit.getScreenSize();
    i could obtain screen dimensions and...
  2. [SOLVED] Re: Adjust screen size and button arrangement for any computer screen

    I had found this code to maximize frame to screen size
    frame.setExtendedState(JFrame.MAXIMIZED_BOTH);
    frame.setVisible(true);

    i could not get information regarding if the button positions would...
  3. [SOLVED] Adjust screen size and button arrangement for any computer screen

    Hello,
    I have a java GUI code that opens a frame having 5 buttons arranged at the 4 corners and center of the screen. I have manually entered the size of the frame and the position of the buttons,...
Results 1 to 3 of 3