Exemple #1
0
        public static DialogResult Afficher(string strMess, EFormAlerteBoutons boutons, EFormAlerteType icone, int nSecondesMaxAffichage, Form owner)
        {
            CFormAlerte frm = new CFormAlerte(strMess, boutons, icone, nSecondesMaxAffichage);

            //frm.Owner = owner;
            return(frm.ShowDialog(owner));
        }
Exemple #2
0
        public static DialogResult Afficher(string strMess)
        {
            CFormAlerte frm = new CFormAlerte(strMess);

            return(frm.ShowDialog());
        }
Exemple #3
0
        public static DialogResult Afficher(List <IErreur> erreurs, EFormAlerteBoutons boutons, Bitmap icone)
        {
            CFormAlerte frm = new CFormAlerte(erreurs, boutons, icone);

            return(frm.ShowDialog());
        }
Exemple #4
0
        public static DialogResult Afficher(List <IErreur> erreurs, EModeAffichageErreurs mode)
        {
            CFormAlerte frm = new CFormAlerte(erreurs, mode);

            return(frm.ShowDialog());
        }
Exemple #5
0
        public static DialogResult Afficher(List <IErreur> erreurs)
        {
            CFormAlerte frm = new CFormAlerte(erreurs);

            return(frm.ShowDialog());
        }
Exemple #6
0
        public static DialogResult Afficher(IErreur[] erreurs, EFormAlerteBoutons boutons, EFormAlerteType icone)
        {
            CFormAlerte frm = new CFormAlerte(erreurs, boutons, icone);

            return(frm.ShowDialog());
        }
Exemple #7
0
        public static DialogResult Afficher(string strMess, EFormAlerteBoutons boutons, Bitmap icone)
        {
            CFormAlerte frm = new CFormAlerte(strMess, boutons, icone);

            return(frm.ShowDialog());
        }