public static eBTNTYPE Show(string msg, MsgType type, eBTNSTYLE btns)
        {
            CloseMsg.CloseAllMsgBox();
            frm_Msg msgBox = new frm_Msg(msg, type, btns);

            msgBox.SetTskProc();
            msgBox.Show();
            return(msgBox._btnRlt);
        }
 public static eBTNTYPE ShowDialog(string msg)
 {
     CloseMsg.CloseAllMsgBox();
     return(ShowDialog(msg, MsgType.Info, eBTNSTYLE.OK));
 }