Exemplo n.º 1
0
        public static DialogResult Afficher(string strMess)
        {
            CFormAlerte frm = new CFormAlerte(strMess);

            return(frm.ShowDialog());
        }
Exemplo n.º 2
0
        public static DialogResult Afficher(List <IErreur> erreurs, EFormAlerteBoutons boutons, Bitmap icone)
        {
            CFormAlerte frm = new CFormAlerte(erreurs, boutons, icone);

            return(frm.ShowDialog());
        }
Exemplo n.º 3
0
        public static DialogResult Afficher(List <IErreur> erreurs, EModeAffichageErreurs mode)
        {
            CFormAlerte frm = new CFormAlerte(erreurs, mode);

            return(frm.ShowDialog());
        }
Exemplo n.º 4
0
        public static DialogResult Afficher(List <IErreur> erreurs)
        {
            CFormAlerte frm = new CFormAlerte(erreurs);

            return(frm.ShowDialog());
        }
Exemplo n.º 5
0
        public static DialogResult Afficher(IErreur[] erreurs, EFormAlerteBoutons boutons, EFormAlerteType icone)
        {
            CFormAlerte frm = new CFormAlerte(erreurs, boutons, icone);

            return(frm.ShowDialog());
        }
Exemplo n.º 6
0
        public static DialogResult Afficher(string strMess, EFormAlerteBoutons boutons, Bitmap icone)
        {
            CFormAlerte frm = new CFormAlerte(strMess, boutons, icone);

            return(frm.ShowDialog());
        }