Example #1
0
 private void btnArribos_Click(object sender, EventArgs e)
 {
     try
     {
         frmDetalleIndicadores formulario = new frmDetalleIndicadores(DataArribos, "ARRIBOS");
         formulario.MdiParent = this.MdiParent;
         formulario.Show();
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }
Example #2
0
 private void btn3_Click(object sender, EventArgs e)
 {
     try
     {
         frmDetalleIndicadores formulario = new frmDetalleIndicadores(DataDesabasto, "DESABASTO");
         formulario.MdiParent = this.MdiParent;
         formulario.Show();
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }
Example #3
0
 private void btn4_Click(object sender, EventArgs e)
 {
     try
     {
         frmDetalleIndicadores formulario = new frmDetalleIndicadores(DataSobrestock, "SOBRESTOCK");
         formulario.MdiParent = this.MdiParent;
         formulario.Show();
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }
Example #4
0
 private void btn1_Click(object sender, EventArgs e)
 {
     try
     {
         frmDetalleIndicadores formulario = new frmDetalleIndicadores(DataPendientes, "PENDIENTES");
         formulario.MdiParent = this.MdiParent;
         formulario.Show();
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }