public string Carga_CodigoParte(string Codigo)
        {
            string     res      = "";
            Conexion   conexion = new Conexion();
            SqlCommand cmd      = conexion.AbrirConexionDataP2B2000_PARTES();

            if (cmd != null)
            {
                cmd.CommandText = "[IngresoPartes_Codigos]";
                cmd.CommandType = System.Data.CommandType.StoredProcedure;
                cmd.Parameters.AddWithValue("@idParte", Codigo);
                SqlDataReader reader = cmd.ExecuteReader();

                while (reader.Read())
                {
                    res = reader["Nombre_Operacion"].ToString();
                }
            }
            conexion.CerrarConexion();
            return(res);
        }