private void producciónToolStripMenuItem_Click(object sender, EventArgs e) { //if (!validacion()) return; op_var.ope = op_sql.parametro1("select nomempl from empleados where codempl ='" + listBox1.SelectedValue.ToString() + "'"); Reportes.Reportes04 frm = new Reportes.Reportes04(2); frm.MdiParent = this.MdiParent; frm.Show(); }
private void verProducciónPorProyectoToolStripMenuItem_Click(object sender, EventArgs e) { if (!validacion()) { return; } op_var.ope = op_sql.parametro1("select nomempl from empleados where codempl ='" + listBox1.SelectedValue.ToString() + "'"); op_var.aa = comboBox5.SelectedIndex + 1; op_var.yy = int.Parse(comboBox6.Text); Reportes.Reportes04 frm = new Reportes.Reportes04(3); frm.MdiParent = this.MdiParent; frm.Show(); }
private void entradasToolStripMenuItem_Click(object sender, EventArgs e) { Reportes.Reportes04 frm = new Reportes.Reportes04(); frm.MdiParent = this.MdiParent; frm.Show(); }
private void vistaPorProyectoToolStripMenuItem_Click(object sender, EventArgs e) { Reportes.Reportes04 frm = new Reportes.Reportes04(1); frm.MdiParent = this.MdiParent; frm.Show(); }