private void btnagregar_Click(object sender, EventArgs e)
        {
            try
            {
                PRUEBAS p = new PRUEBAS();

                p.Nombre      = txtnombre.Text.Trim();
                p.Descripcion = txtdescripcion.Text.Trim();

                R_Humanos.AgregarPruebas(p);
                MessageBox.Show("Prueba agregada correctamente");
                CargarComboIdPruebas();
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
            }
        }