private void btnAgregarTransferencia_Click(object sender, EventArgs e) { if (UsuarioActual.Cuenta.MaxiKioscoIdentifierPredeterminadoTransferencias == null) { MessageBox.Show("Error: Comuníquese con el administrador para que configure el depósito predeterminado"); } else { var pantalla = new frmCrearTransferencia(); bool copia = false; foreach (var frm in Parent.MdiChildren) { if (pantalla.Name == frm.Name) { frm.Close(); } } pantalla.Closed += ApplicationTab_Closed; pantalla.Load += PantallaOnLoad; pantalla.MdiParent = Parent; pantalla.Show(); } }