private void nmuRegistroCampan_Click(object sender, EventArgs e) { FrmCampanC Formulario = new FrmCampanC(); bool Cargado = false; foreach (var item in this.MdiChildren) { if (item.Name == Formulario.Name) { Cargado = true; } } if (!Cargado) { Formulario.MdiParent = this; Formulario.Show(); } }