Example #1
0
 internal void RegistrujSe()
 {
     try
     {
         FrmRegistracija forma = new FrmRegistracija("REGISTRACIJA");
         forma.ShowDialog();
     }
     catch (ExceptionServer)
     {
         FrmClose();
     }
 }
Example #2
0
 internal void OtvoriFormuProfil()
 {
     try
     {
         FrmRegistracija forma = new FrmRegistracija("PROFIL", Sesija.Instance.Korisnik);
         forma.ShowDialog();
     }
     catch (ExceptionServer es)
     {
         FrmClose();
         throw new ExceptionServer(es.Message);
     }
 }