private void bttn_Consultar_Click(object sender, EventArgs e)
 {
     if (radioButton_InventarioMateriaPrima.Checked==true)
     {
         Reporte_Informacion_de_inventario_materia_prima rm = new Reporte_Informacion_de_inventario_materia_prima();
         rm.Show();
     }
     else if (radioButton_InventarioProducto.Checked==true)
     {
         Reporte_informacion_de_inventario_de_producto rp = new Reporte_informacion_de_inventario_de_producto();
         rp.Show();
     }
 }
 private void bttn_Consultar_Click(object sender, EventArgs e)
 {
     if (radioButton_InventarioMateriaPrima.Checked == true)
     {
         Reporte_Informacion_de_inventario_materia_prima rm = new Reporte_Informacion_de_inventario_materia_prima();
         rm.Show();
     }
     else if (radioButton_InventarioProducto.Checked == true)
     {
         Reporte_informacion_de_inventario_de_producto rp = new Reporte_informacion_de_inventario_de_producto();
         rp.Show();
     }
 }