I have a problem, I set the size for frame, but doesn't work. I found a topic about this, but it's not helpful for me...
I tried with getContentPane().getSize(500,500), but nothing.
import java.awt.event.*;
import java.awt.*;
import javax.swing.*;
public class Mere extends JFrame{
    private JPanel b;
    public Mere(String titlu){
        setSize(500,500);
        setLayout(null);
        this.getSmth();
        pack();
        show();
    }
    public void getSmth(){
        JLabel user=new JLabel("User");
        user.setBounds(10,10,80,25);
        getContentPane().add(user);
        JTextField userText=new JTextField(20);
        userText.setBounds(100,10,160,25);
        getContentPane().add(userText);
        JPasswordField pas=new JPasswordField(20);
        pas.setBounds(100,40,160,25);
        getContentPane().add(pas);
        JButton n=new JButton("Register");
        n.setBounds(180,80,100,30);
        getContentPane().add(n);
        JLabel pass=new JLabel("Pass");
        pass.setBounds(10,40,100,25);
        getContentPane().add(pass);
        getContentPane().setVisible(true);
    }
    public static void main(String[]args){
        new Mere("yas");
    }
}
 
     
    