Here you can find the source of ConfirmMessage(String strMsg)
static boolean ConfirmMessage(String strMsg)
//package com.java2s; //License from project: Apache License import java.awt.Component; import javax.swing.JOptionPane; public class Main { static boolean ConfirmMessage(String strMsg) { if ((JOptionPane.showConfirmDialog((Component) null, strMsg, "Peticion", JOptionPane.OK_CANCEL_OPTION)) == JOptionPane.OK_OPTION) return true; else/*from w w w. j a v a 2 s .c om*/ return false; } }