Exemplo n.º 1
0
 public static bool Afiseaza(Form pEcranPariente, Exception pExceptie)
 {
     using (frmEroare ecran = new frmEroare(pExceptie))
     {
         ecran.AplicaPreferinteleUtilizatorului();
         return(CCL.UI.IHMUtile.DeschideEcran(pEcranPariente, ecran));
     }
 }
Exemplo n.º 2
0
        public static void AfiseazaMesaj(System.Windows.Forms.Form pEcranParinte, Exception ParamExceptie)
        {
            //if (IHMUtile._AccesTotal != null)
            //    IHMUtile._AccesTotal.inchideEcranAsteptare();

            using (Erori.frmEroare ecran = new Erori.frmEroare(ParamExceptie))
            {
                CCL.UI.IHMUtile.DeschideEcran(pEcranParinte, ecran);
            }
        }
Exemplo n.º 3
0
        public static void AfiseazaMesaj(System.Windows.Forms.Form pEcranParinte, string pEroare)
        {
            //if (IHMUtile._AccesTotal != null)
            //    IHMUtile._AccesTotal.inchideEcranAsteptare();

            using (Erori.frmEroare ecran = new Erori.frmEroare(new Exception(pEroare)))
            {
                ecran.AscundeButonDetalii();
                CCL.UI.IHMUtile.DeschideEcran(pEcranParinte, ecran);
            }
        }