private void nuevo_lnklbl_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) { ComboFill = false; if (Program.Gventana == "componentes") { PiezasRepuestosForm form = new PiezasRepuestosForm(); form.ShowDialog(); LlenarComponenteCb(); } else if (Program.Gventana == "reparacion") { GastosGeneralesForm form = new GastosGeneralesForm(); form.ShowDialog(); LlenarGastosReparacionCb(); } else { GastosGeneralesForm form = new GastosGeneralesForm(); form.ShowDialog(); LlenarGastosAduanalesCb(); } }
private void gastos_btn_Click(object sender, EventArgs e) { GastosGeneralesForm form = new GastosGeneralesForm(); form.ShowDialog(); }