tf=new JTextField(12);
bt=new JButton("abcd");
bt.addActionListener(new ActionListener(){
  public void actionPerformed(ActionEvent e){
    if(JOptionPane.showConfirmDialog(  
        null,"abcd","",JOptionPane.YES_NO_OPTION)
       ==JOptionPane.YES_OPTION){
tf.requestFocus();
    }
  }
});