internal void AbrirSaldo() { Saldo saldo = new Saldo(); saldo.Show(); Transacciones transacciones = new Transacciones(); transacciones.Close(); }
private void MiconsSaldo_Click(object sender, EventArgs e) { bool open = false; foreach (Form form in this.MdiChildren) { if (form is Saldo) { form.BringToFront(); open = true; } } if (!open) { Form tela = new Saldo(); tela.MdiParent = this; tela.Show(); } }
private void Lagersaldoshortcut_Click(object sender, EventArgs e) { Saldo opensaldo = new Saldo(); opensaldo.Show(); }