private void AbrirSucursal(object sender, EventArgs e) { frmSucursal frm = frmSucursal.GetInstance(); frm.MdiParent = this; frm.Show(); }
private void btnsucursales_Click(object sender, EventArgs e) { frmSucursal Ventana = new frmSucursal(); Ventana.Show(); //Ventana.Dispose(); }
private void sucursalToolStripMenuItem_Click(object sender, EventArgs e) { frmSucursal sucursal = new frmSucursal(); sucursal.Show(); }