public static DialogResult Afficher(string strMess) { CFormAlerte frm = new CFormAlerte(strMess); return(frm.ShowDialog()); }
public static DialogResult Afficher(List <IErreur> erreurs, EFormAlerteBoutons boutons, Bitmap icone) { CFormAlerte frm = new CFormAlerte(erreurs, boutons, icone); return(frm.ShowDialog()); }
public static DialogResult Afficher(List <IErreur> erreurs, EModeAffichageErreurs mode) { CFormAlerte frm = new CFormAlerte(erreurs, mode); return(frm.ShowDialog()); }
public static DialogResult Afficher(List <IErreur> erreurs) { CFormAlerte frm = new CFormAlerte(erreurs); return(frm.ShowDialog()); }
public static DialogResult Afficher(IErreur[] erreurs, EFormAlerteBoutons boutons, EFormAlerteType icone) { CFormAlerte frm = new CFormAlerte(erreurs, boutons, icone); return(frm.ShowDialog()); }
public static DialogResult Afficher(string strMess, EFormAlerteBoutons boutons, Bitmap icone) { CFormAlerte frm = new CFormAlerte(strMess, boutons, icone); return(frm.ShowDialog()); }