Example #1
0
 private static void pMsgAux(String msg, CSMSGICONS icon, String title, String details) 
 {
     if (title == "@@@@@") { title = m_title; }
     fMsg fmsg = new fMsg();
     fmsg.setIcon(icon);
     fmsg.setMessage(msg);
     fmsg.setTitle(title);
     fmsg.ShowDialog();
 }
Example #2
0
        private static void pMsgAux(String msg, CSMSGICONS icon, String title, String details)
        {
            if (title == "@@@@@")
            {
                title = m_title;
            }
            fMsg fmsg = new fMsg();

            fmsg.setIcon(icon);
            fmsg.setMessage(msg);
            fmsg.setTitle(title);
            fmsg.ShowDialog();
        }
Example #3
0
 public void setIcon(CSMSGICONS icon)
 {
     switch (icon) {
         case CSMSGICONS.Error:
             setErrorIcon();
             break;
         case CSMSGICONS.Exclamation:
             setErrorWarning();
             break;
         case CSMSGICONS.Information:
             setErrorInfo();
             break;
     }
 }
Example #4
0
        public void setIcon(CSMSGICONS icon)
        {
            switch (icon)
            {
            case CSMSGICONS.Error:
                setErrorIcon();
                break;

            case CSMSGICONS.Exclamation:
                setErrorWarning();
                break;

            case CSMSGICONS.Information:
                setErrorInfo();
                break;
            }
        }