Help with T61 monitor warning

Whenever I use Adobe Photoshop Elements 5, or just recently installed Elements 7, I keep getting a warning at the start of the editing option that says "The monitor profile "Lenovo ThinkPad LCD Monitor" appears to be defective.  Please rerun your monitor calibration software.  It also has buttons to click "Ignore Profile" and "Use Anyway."  I don't know what this means.  I usually click the Ignore Profile button.  Can someone tell me what I need to do to resolve this warning.  And is there a Lenovo monitor calibration software?  What do I need to do to calibrate the monitor.  Thanks for any help you can give.

I think this is just to warn you regarding your colour profile of your monitor doesn't match with that of the software, which may result in colour inconsistencies.
Regards,
Jin Li
May this year, be the year of 'DO'!
I am a volunteer, and not a paid staff of Lenovo or Microsoft

Similar Messages

  • Help with message please:  Warning: mysql_free_result() expects parameter 1 to be resource, null given in...... line

    I would really appreciate some help with my search & results page that is now throwing up the following error:
    Warning: mysql_free_result() expects parameter 1 to be resource, null given in...... line (the line number refers to the following code:
    mysql_free_result($RSsearchforsale);
    mysql_free_result($RsSearchForSale2);
    mysql_free_result($RsSearchForSale3);
    mysql_free_result($RsSearchForSale4);
    I am new to php and am setting up a dynamic site in Dreamweaver (thanks to the Missing Manual – very helpful). I apologise in advanced for my lengthy description of the problem (perhaps get yourself a drink before continuing!)
    I have a Search page with 4 list menus where the user can select an option from ANY or ALL of the menus, if a menu is not selected the value posted to the results page will be 'zzz'.
    On the results page I have 4 recordsets, all getting the correct results, only one recordset is required to run depending on how many of the menus from the search page have been selected and a test is run before executing the sql using a SWITCH statement checking how many of the menus had passed the 'zzz' values from the Search page if you see what I mean. The results page  has Repeating Regions, Recordset Paging and Display Record Count. The exact result that I require are generated by this method.
    THE PROBLEM, when a user makes a selection the first page of 10 results is fine, but the error message above is shown at the bottom of the page, AND when the user clicks NEXT to go to the next page of results THERE ARE NO RESULTS.
    This is exactly what happens depending on how many menus selected and which recordset is used:
    4 menus selected from Search: runs RSsearchforsale, results correct but 3 error messages on 1st page relating to mysql_free_result($RsSearchForSale2),mysql_free_result($RsSearchForSale3), & mysql_free_result($RsSearchForSale4). The display record count shows correct results found. NEXT page is empty of results and still shows the correct display record count as if it should be displaying the records, also has the same 3 error messages.
    3 menus selected from Search:  runs RsSearchForSale2, results correct but 3 error messages on 1st page relating to mysql_free_result($RSsearchforsale),mysql_free_result($RsSearchForSale3), & mysql_free_result($RsSearchForSale4). The display record count shows correct number of results. NEXT page shows results from the  DEFAULT setting of the recordset and the Display record count reflects this new set of results. Also still shows the 3 mysql_free_results for RsSearchForSale2, 3 and 4.
    2 menus selected from Search: runs   RsSearchForSale3, results correct but 2 error messages on 1st page relating to  mysql_free_result($RSsearchforsale) & mysql_free_result (RsSearchForSale4). The display record count is correct. NEXT page does exactly the same as described in above 3 menus selected.
    1 menu selected from search: runs RsSearchForSale4, results correct but 1 error meaasge on 1st page, mysql_free_result($RSsearchforsale). Display record count is correct and again when NEXT page is selected does as described in above where 2 or 3 menus selected.
    If you have gotten this far without falling asleep then thank you and well done! I have pasted my code below and I know its a lot to ask but please please can you give me an idea as to where or why I have gone wrong. I felt I was so close at perfecting this search and have been working on it for weeks now. I feel sure the problem is because I have 4 recordsets on the page but I could find no other way to get the exact results I wanted from the menus.
    Looking forward to any help.
    <?php require_once('Connections/propertypages.php'); ?>
    <?php if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? "'" . doubleval($theValue) . "'" : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    $currentPage = $_SERVER["PHP_SELF"];
    $maxRows_RSsearchforsale = 10;
    $pageNum_RSsearchforsale = 0;
    if (isset($_GET['pageNum_RSsearchforsale'])) {
      $pageNum_RSsearchforsale = $_GET['pageNum_RSsearchforsale'];
    $startRow_RSsearchforsale = $pageNum_RSsearchforsale * $maxRows_RSsearchforsale;
    $varloc_RSsearchforsale = "mpl";
    if (isset($_POST['location'])) {
      $varloc_RSsearchforsale = $_POST['location'];
    $vartype_RSsearchforsale = "vil";
    if (isset($_POST['type'])) {
      $vartype_RSsearchforsale = $_POST['type'];
    $varprice_RSsearchforsale = "pr9";
    if (isset($_POST['price'])) {
      $varprice_RSsearchforsale = $_POST['price'];
    $varbed_RSsearchforsale = "b5";
    if (isset($_POST['beds'])) {
      $varbed_RSsearchforsale = $_POST['beds'];
    switch (true) {
    case ($varloc_RSsearchforsale != 'zzz' && $vartype_RSsearchforsale != 'zzz' && $varprice_RSsearchforsale != 'zzz' && $varbed_RSsearchforsale != 'zzz'):
    mysql_select_db($database_propertypages, $propertypages);
    $query_RSsearchforsale = sprintf("SELECT DISTINCT trueprice,`desc`, `propid`, `bathrooms`, `photo1`, locationtable.loc, typetable.style, bedtable.`number` FROM detailstable JOIN locationtable ON detailstable.location=locationtable.locid JOIN typetable ON detailstable.type=typetable.typeid JOIN pricetable ON detailstable.price=pricetable.priceid JOIN bedtable ON detailstable.beds=bedtable.bedid WHERE location=%s AND price=%s AND type=%s AND beds=%s ORDER BY detailstable.trueprice ASC", GetSQLValueString($varloc_RSsearchforsale, "text"),GetSQLValueString($varprice_RSsearchforsale, "text"),GetSQLValueString($vartype_RSsearchforsale, "text"),GetSQLValueString($varbed_RSsearchforsale, "text"));
    $query_limit_RSsearchforsale = sprintf("%s LIMIT %d, %d", $query_RSsearchforsale, $startRow_RSsearchforsale, $maxRows_RSsearchforsale);
    $RSsearchforsale = mysql_query($query_limit_RSsearchforsale, $propertypages) or die(mysql_error());
    $row_RSsearchforsale = mysql_fetch_assoc($RSsearchforsale);
    if (isset($_GET['totalRows_RSsearchforsale'])) {
      $totalRows_RSsearchforsale = $_GET['totalRows_RSsearchforsale'];
    } else {
      $all_RSsearchforsale = mysql_query($query_RSsearchforsale);
      $totalRows_RSsearchforsale = mysql_num_rows($all_RSsearchforsale);
    $totalPages_RSsearchforsale = ceil($totalRows_RSsearchforsale/$maxRows_RSsearchforsale)-1;
    $queryString_RSsearchforsale = "";
    if (!empty($_SERVER['QUERY_STRING'])) {
      $params = explode("&", $_SERVER['QUERY_STRING']);
      $newParams = array();
      foreach ($params as $param) {
        if (stristr($param, "pageNum_RSsearchforsale") == false &&
            stristr($param, "totalRows_RSsearchforsale") == false) {
          array_push($newParams, $param);
      if (count($newParams) != 0) {
        $queryString_RSsearchforsale = "&" . htmlentities(implode("&", $newParams));
    $queryString_RSsearchforsale = sprintf("&totalRows_RSsearchforsale=%d%s", $totalRows_RSsearchforsale, $queryString_RSsearchforsale); } ?>
    <?php require_once('Connections/propertypages.php'); ?>
    <?php if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? "'" . doubleval($theValue) . "'" : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    $currentPage = $_SERVER["PHP_SELF"];
    $maxRows_RsSearchForSale2 = 10;
    $pageNum_RsSearchForSale2 = 0;
    if (isset($_GET['pageNum_RsSearchForSale2'])) {
      $pageNum_RsSearchForSale2 = $_GET['pageNum_RsSearchForSale2'];
    $startRow_RsSearchForSale2 = $pageNum_RsSearchForSale2 * $maxRows_RsSearchForSale2;
    $varloc2_RsSearchForSale2 = "mpl";
    if (isset($_POST['location'])) {
      $varloc2_RsSearchForSale2 = $_POST['location'];
    $varprice2_RsSearchForSale2 = "p9";
    if (isset($_POST['price'])) {
      $varprice2_RsSearchForSale2 = $_POST['price'];
    $vartype2_RsSearchForSale2 = "vil";
    if (isset($_POST['type'])) {
      $vartype2_RsSearchForSale2 = $_POST['type'];
    $varbed2_RsSearchForSale2 = "b5";
    if (isset($_POST['beds'])) {
      $varbed2_RsSearchForSale2 = $_POST['beds'];
    switch (true) {
    case ($varloc2_RsSearchForSale2 == 'zzz'):
    case ($varprice2_RsSearchForSale2 == 'zzz'):
    case ($vartype2_RsSearchForSale2 == 'zzz'):
    case ($varbed2_RsSearchForSale2 == 'zzz'):
    mysql_select_db($database_propertypages, $propertypages);
    $query_RsSearchForSale2 = sprintf("SELECT DISTINCT trueprice,`desc`, `propid`, `bathrooms`, `photo1`, locationtable.loc, typetable.style, bedtable.`number` FROM detailstable JOIN locationtable ON detailstable.location=locationtable.locid JOIN typetable ON detailstable.type=typetable.typeid JOIN pricetable ON detailstable.price=pricetable.priceid JOIN bedtable ON detailstable.beds=bedtable.bedid WHERE (location=%s AND price=%s AND type=%s) OR (location=%s AND price=%s AND beds=%s) OR (location=%s AND type=%s AND beds=%s) OR (price=%s AND type=%s AND beds=%s) ORDER BY detailstable.trueprice ASC", GetSQLValueString($varloc2_RsSearchForSale2, "text"),GetSQLValueString($varprice2_RsSearchForSale2, "text"),GetSQLValueString($vartype2_RsSearchForSale2, "text"),GetSQLValueString($varloc2_RsSearchForSale2, "text"),GetSQLValueString($varprice2_RsSearchForSale2, "text"),GetSQLValueString($varbed2_RsSearchForSale2, "text"),GetSQLValueString($varloc2_RsSearchForSale2, "text"),GetSQLValueString($vartype2_RsSearchForSale2, "text"),GetSQLValueString($varbed2_RsSearchForSale2, "text"),GetSQLValueString($varprice2_RsSearchForSale2, "text"),GetSQLValueString($vartype2_RsSearchForSale2, "text"),GetSQLValueString($varbed2_RsSearchForSale2, "text"));
    $query_limit_RsSearchForSale2 = sprintf("%s LIMIT %d, %d", $query_RsSearchForSale2, $startRow_RsSearchForSale2, $maxRows_RsSearchForSale2);
    $RsSearchForSale2 = mysql_query($query_limit_RsSearchForSale2, $propertypages) or die(mysql_error());
    $row_RsSearchForSale2 = mysql_fetch_assoc($RsSearchForSale2);
    if (isset($_GET['totalRows_RsSearchForSale2'])) {
      $totalRows_RsSearchForSale2 = $_GET['totalRows_RsSearchForSale2'];
    } else {
      $all_RsSearchForSale2 = mysql_query($query_RsSearchForSale2);
      $totalRows_RsSearchForSale2 = mysql_num_rows($all_RsSearchForSale2);
    $totalPages_RsSearchForSale2 = ceil($totalRows_RsSearchForSale2/$maxRows_RsSearchForSale2)-1;
    $queryString_RsSearchForSale2 = "";
    if (!empty($_SERVER['QUERY_STRING'])) {
      $params = explode("&", $_SERVER['QUERY_STRING']);
      $newParams = array();
      foreach ($params as $param) {
        if (stristr($param, "pageNum_RsSearchForSale2") == false &&
            stristr($param, "totalRows_RsSearchForSale2") == false) {
          array_push($newParams, $param);
      if (count($newParams) != 0) {
        $queryString_RsSearchForSale2 = "&" . htmlentities(implode("&", $newParams));
    $queryString_RsSearchForSale2 = sprintf("&totalRows_RsSearchForSale2=%d%s", $totalRows_RsSearchForSale2, $queryString_RsSearchForSale2);
    }?>
    <?php require_once('Connections/propertypages.php'); ?>
    <?php if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? "'" . doubleval($theValue) . "'" : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    $currentPage = $_SERVER["PHP_SELF"];
    $maxRows_RsSearchForSale3 = 10;
    $pageNum_RsSearchForSale3 = 0;
    if (isset($_GET['pageNum_RsSearchForSale3'])) {
      $pageNum_RsSearchForSale3 = $_GET['pageNum_RsSearchForSale3'];
    $startRow_RsSearchForSale3 = $pageNum_RsSearchForSale3 * $maxRows_RsSearchForSale3;
    $varloc3_RsSearchForSale3 = "mpl";
    if (isset($_POST['location'])) {
      $varloc3_RsSearchForSale3 = $_POST['location'];
    $varprice3_RsSearchForSale3 = "p9";
    if (isset($_POST['price'])) {
      $varprice3_RsSearchForSale3 = $_POST['price'];
    $vartype3_RsSearchForSale3 = "vil";
    if (isset($_POST['type'])) {
      $vartype3_RsSearchForSale3 = $_POST['type'];
    $varbed3_RsSearchForSale3 = "b5";
    if (isset($_POST['beds'])) {
      $varbed3_RsSearchForSale3 = $_POST['beds'];
    switch (true) {
    case ($varloc3_RsSearchForSale3 == 'zzz' && $varprice3_RsSearchForSale3 == 'zzz'):
    case ($varprice3_RsSearchForSale3 == 'zzz' && $vartype3_RsSearchForSale3 == 'zzz'):
    case ($vartype3_RsSearchForSale3 == 'zzz' && $varbed3_RsSearchForSale3 == 'zzz' ):
    case ($varbed3_RsSearchForSale3 == 'zzz' && $varloc3_RsSearchForSale3 == 'zzz'):
    case ($varloc3_RsSearchForSale3 == 'zzz' && $vartype3_RsSearchForSale3 == 'zzz'):
    case ($varprice3_RsSearchForSale3 == 'zzz' && $varbed3_RsSearchForSale3 == 'zzz'):
    mysql_select_db($database_propertypages, $propertypages);
    $query_RsSearchForSale3 = sprintf("SELECT DISTINCT trueprice,`desc`, `propid`, `bathrooms`, `photo1`, locationtable.loc, typetable.style, bedtable.`number` FROM detailstable JOIN locationtable ON detailstable.location=locationtable.locid JOIN typetable ON detailstable.type=typetable.typeid JOIN pricetable ON detailstable.price=pricetable.priceid JOIN bedtable ON detailstable.beds=bedtable.bedid WHERE (location=%s AND price=%s) OR (location=%s AND  type=%s) OR (location=%s AND beds=%s) OR ( type=%s AND beds=%s) OR (price=%s AND type=%s) OR (price=%s AND beds=%s) ORDER BY detailstable.trueprice ASC", GetSQLValueString($varloc3_RsSearchForSale3, "text"),GetSQLValueString($varprice3_RsSearchForSale3, "text"),GetSQLValueString($varloc3_RsSearchForSale3, "text"),GetSQLValueString($vartype3_RsSearchForSale3, "text"),GetSQLValueString($varloc3_RsSearchForSale3, "text"),GetSQLValueString($varbed3_RsSearchForSale3, "text"),GetSQLValueString($vartype3_RsSearchForSale3, "text"),GetSQLValueString($varbed3_RsSearchForSale3, "text"),GetSQLValueString($varprice3_RsSearchForSale3, "text"),GetSQLValueString($vartype3_RsSearchForSale3, "text"),GetSQLValueString($varprice3_RsSearchForSale3, "text"),GetSQLValueString($varbed3_RsSearchForSale3, "text"));
    $query_limit_RsSearchForSale3 = sprintf("%s LIMIT %d, %d", $query_RsSearchForSale3, $startRow_RsSearchForSale3, $maxRows_RsSearchForSale3);
    $RsSearchForSale3 = mysql_query($query_limit_RsSearchForSale3, $propertypages) or die(mysql_error());
    $row_RsSearchForSale3 = mysql_fetch_assoc($RsSearchForSale3);
    if (isset($_GET['totalRows_RsSearchForSale3'])) {
      $totalRows_RsSearchForSale3 = $_GET['totalRows_RsSearchForSale3'];
    } else {
      $all_RsSearchForSale3 = mysql_query($query_RsSearchForSale3);
      $totalRows_RsSearchForSale3 = mysql_num_rows($all_RsSearchForSale3);
    $totalPages_RsSearchForSale3 = ceil($totalRows_RsSearchForSale3/$maxRows_RsSearchForSale3)-1;
    $queryString_RsSearchForSale3 = "";
    if (!empty($_SERVER['QUERY_STRING'])) {
      $params = explode("&", $_SERVER['QUERY_STRING']);
      $newParams = array();
      foreach ($params as $param) {
        if (stristr($param, "pageNum_RsSearchForSale3") == false &&
            stristr($param, "totalRows_RsSearchForSale3") == false) {
          array_push($newParams, $param);
      if (count($newParams) != 0) {
        $queryString_RsSearchForSale3 = "&" . htmlentities(implode("&", $newParams));
    $queryString_RsSearchForSale3 = sprintf("&totalRows_RsSearchForSale3=%d%s", $totalRows_RsSearchForSale3, $queryString_RsSearchForSale3);
    } ?>
    <?php require_once('Connections/propertypages.php'); ?>
    <?php if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? "'" . doubleval($theValue) . "'" : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    $currentPage = $_SERVER["PHP_SELF"];
    $maxRows_RsSearchForSale4 = 10;
    $pageNum_RsSearchForSale4 = 0;
    if (isset($_GET['pageNum_RsSearchForSale4'])) {
      $pageNum_RsSearchForSale4 = $_GET['pageNum_RsSearchForSale4'];
    $startRow_RsSearchForSale4 = $pageNum_RsSearchForSale4 * $maxRows_RsSearchForSale4;
    $varloc4_RsSearchForSale4 = "mpl";
    if (isset($_POST['location'])) {
      $varloc4_RsSearchForSale4 = $_POST['location'];
    $vartype4_RsSearchForSale4 = "vil";
    if (isset($_POST['type'])) {
      $vartype4_RsSearchForSale4 = $_POST['type'];
    $varprice4_RsSearchForSale4 = "p9";
    if (isset($_POST['price'])) {
      $varprice4_RsSearchForSale4 = $_POST['price'];
    $varbed4_RsSearchForSale4 = "b5";
    if (isset($_POST['beds'])) {
      $varbed4_RsSearchForSale4 = $_POST['beds'];
    switch (true) {
    case ($varloc4_RsSearchForSale4 == 'zzz' && $vartype4_RsSearchForSale4 =='zzz' && $varprice4_RsSearchForSale4 == 'zzz'):
    case ($varloc4_RsSearchForSale4 == 'zzz' && $varprice4_RsSearchForSale4 =='zzz' && $varbed4_RsSearchForSale4 == 'zzz'):
    case ($varloc4_RsSearchForSale4 == 'zzz' && $varbed4_RsSearchForSale4 =='zzz' && $vartype4_RsSearchForSale4 == 'zzz'):
    case ($varbed4_RsSearchForSale4 == 'zzz' && $vartype4_RsSearchForSale4 =='zzz' && $varprice4_RsSearchForSale4 == 'zzz'):
    mysql_select_db($database_propertypages, $propertypages);
    $query_RsSearchForSale4 = sprintf("SELECT DISTINCT trueprice,`desc`, `propid`, `bathrooms`, `photo1`, locationtable.loc, typetable.style, bedtable.`number` FROM detailstable JOIN locationtable ON detailstable.location=locationtable.locid JOIN typetable ON detailstable.type=typetable.typeid JOIN pricetable ON detailstable.price=pricetable.priceid JOIN bedtable ON detailstable.beds=bedtable.bedid WHERE location=%s OR price=%s OR type=%s OR beds=%s ORDER BY detailstable.trueprice ASC", GetSQLValueString($varloc4_RsSearchForSale4, "text"),GetSQLValueString($varprice4_RsSearchForSale4, "text"),GetSQLValueString($vartype4_RsSearchForSale4, "text"),GetSQLValueString($varbed4_RsSearchForSale4, "text"));
    $query_limit_RsSearchForSale4 = sprintf("%s LIMIT %d, %d", $query_RsSearchForSale4, $startRow_RsSearchForSale4, $maxRows_RsSearchForSale4);
    $RsSearchForSale4 = mysql_query($query_limit_RsSearchForSale4, $propertypages) or die(mysql_error());
    $row_RsSearchForSale4 = mysql_fetch_assoc($RsSearchForSale4);
    if (isset($_GET['totalRows_RsSearchForSale4'])) {
      $totalRows_RsSearchForSale4 = $_GET['totalRows_RsSearchForSale4'];
    } else {
      $all_RsSearchForSale4 = mysql_query($query_RsSearchForSale4);
      $totalRows_RsSearchForSale4 = mysql_num_rows($all_RsSearchForSale4);
    $totalPages_RsSearchForSale4 = ceil($totalRows_RsSearchForSale4/$maxRows_RsSearchForSale4)-1;
    $queryString_RsSearchForSale4 = "";
    if (!empty($_SERVER['QUERY_STRING'])) {
      $params = explode("&", $_SERVER['QUERY_STRING']);
      $newParams = array();
      foreach ($params as $param) {
        if (stristr($param, "pageNum_RsSearchForSale4") == false &&
            stristr($param, "totalRows_RsSearchForSale4") == false) {
          array_push($newParams, $param);
      if (count($newParams) != 0) {
        $queryString_RsSearchForSale4 = "&" . htmlentities(implode("&", $newParams));
    $queryString_RsSearchForSale4 = sprintf("&totalRows_RsSearchForSale4=%d%s", $totalRows_RsSearchForSale4, $queryString_RsSearchForSale4);
    }?>

    Hi David,
    Thank you for your reply and patience, we are getting closer in spite of me!
    Of course i needed to change the name of the recordset, i did that the first time i did it (when i got the error), the when i re did it i forgot, in my defense i was also trying to get a full understanding of the code using the W3Schools php reference and writing by the side of the code on a piece of paper what it meant in English.
    Anyway after re doing the code correctly it still displayed all the records of my database but i realised that was because i was POSTING from the search form and when i changed it to the GET method I now get results when all 4  list menus are selected from and the paging works. After reading about the POST / GET method i chose the POST option, is the GET method a better option in my circumstance?
    On my site now if the user selects from 1,2 or 3 of the menus rather than selecting the relevant records it displays the NO RESULT page, I would like my users to be able to select from all of the menus or ANY combination of the menus and find exact results for their search, for example if they only select a location and a price i want it display all records that match that location and price with any number of bedrooms and any Type of property: Perhaps this is due to how my list menus are set up, for each menu the first Item label is Location (or Beds or Type or Price) and the value i have left blank which i believe means that it will use the item label as the value, the second Item label for all menus is Any and again the value has been left blank. All other item labels have values relevant to database records.  
    I do look forward to your reply and cannot thank you enough for following this through with me, please continue to bare with me just a little more,
    best regards
    Tessimon
    Date: Wed, 11 Nov 2009 06:56:24 -0700
    From: [email protected]
    To: [email protected]
    Subject: Help with message please:  Warning: mysql_free_result() expects parameter 1 to be resource, null given in...... line
    You're not adding the WHERE clause to the SQL query. My example code uses $query_search. You need to change that variable to match the name of your recordset, i.e. $query_RSsearchforsale.
    Moreover, the WHERE clause needs to go before ORDER BY.
    $query_RSsearchforsale = "SELECT trueprice,`desc`, `propid`, `bathrooms`, `location`, `type`, `price`, `beds`, `photo1`, locationtable.loc, typetable.style, bedtable.`number` FROM detailstable JOIN locationtable ON detailstable.location=locationtable.locid JOIN typetable ON detailstable.type=typetable.typeid JOIN pricetable ON detailstable.price=pricetable.priceid JOIN bedtable ON detailstable.beds=bedtable.bedid ";
    // Set a flag to indicate whether the query has a WHERE clause
    $where = false;
    // Loop through the associatiave array of expected search values
    foreach ($expected as $var => $type) {
      if (isset($_GET[$var])) {
        $value = trim(urldecode($_GET[$var]));
        if (!empty($value)) {
          // Check if the value begins with > or <
          // If so, use it as the operator, and extract the value
          if ($value[0] == '>' || $value[0] == '<') {
            $operator = $value[0];
            $value = ltrim(substr($value, 1));
          } elseif (strtolower($type) != 'like') {
            $operator = '=';
          // Check if the WHERE clause has been added yet
          if ($where) {
            $query_RSsearchforsale .= ' AND ';
          } else {
            $query_RSsearchforsale .= ' WHERE ';
            $where = true;
          // Build the SQL query using the right operator and data type
          $type = strtolower($type);
          switch($type) {
            case 'like':
              $query_RSsearchforsale .= "`$var` LIKE " . GetSQLValueString('%' .
    $value . '%', "text");
              break;
            case 'int':
            case 'double':
            case 'date':
              $query_RSsearchforsale .= "`$var` $operator " .
    GetSQLValueString($value, "$type");
              break;
            default:
            $query_RSsearchforsale .= "`$var` = " . GetSQLValueString($value,
    "$type");
    $query_RSsearchforsale .= ' ORDER BY detailstable.trueprice ASC';
    >

  • Help - MSI VGA Monitor Warning Message

    Hello Friends,
    Sorry by my English. I am a spanish user.
    I buy a Geforce 4 Ti 4200 Agp8x.
    I installed "MSI VGA Monitor Warning Message" but it give me this error message:
     Fan speed is unusual
     Now fan speed is : 1670 Rpm
     Memory voltage is unusual
     Now memory voltage is : 3.34 Volt 8b
    I have a mb "Asus tuv4x (bios 1.005beta)" with a PentiumIII 1000. I have not installed the msi drivers. I have installed the 43.45 reference nvidia drives.
    ¿What is that error? ¿the vga or the mb is bad?.
    Thanks by your help.

    Thanks by your reply.
    Yes. I loaded 4.47 Via 4in1.
    I am running "MSI 3D turbo experience". When I run this sift it open a internet explorer window with a error for a file ".ocx" and after it give the error message about speed fan et voltage.
    I read some post that say that this soft dont work well in xp. I have xp.
    Now I installed the last version of "3D turbe experience" from web of msi (2,13) and y have lowed the security for the "active x" in the security tab of tools of internet explorer.
    Now I have not the error message and the "3D turbo experience" internet explorer page load but it dont give the the speed fan.
    Thanks friend.

  • Please help with strange monitor/Lightroom 4 interaction problem

    I bought a Dell Ultrasharp U3011 yesterday, and I'm now facing a very strange problem. It's sort of related to the common discussed issue of Lightroom's color management, but there is a twist here. I'll explain.
    The monitor I had been using (and still have) was a Samsung SyncMaster 244T. I had no problems at all with it.
    With the U3011, I've run into this problem:
    -When I view files in Lightroom 4, the colors are muted and contrast low. The same files seen in Xnview, ACDSee Pro (with the color management turned off), Digital Photo Professional (colorspace set to sRGB), are much more vivid. In Photoshop, if I use the default color setting, it looks muted like Lightroom (I'm guessing because Adobe products have default color profile set to ProPhoto RGB), but if I set the color profile to the monitor's profile, it becomes vivid and matches the other software I mentioned. If I use any other profile such as sRGB IEC81966-2.1, ProPhoto RGB, Adobe RGB, etc, it doesn't match the other software I mentioned. This is strange because the other ones match each other because they are set to sRGB, but in Photoshop, even if I set the color profile to sRGB, it still doesn't match.
    -In Lightroom 4, even if I use Soft Proofing, nothing changes. It's as if Soft Proofing is broken--it doesn't do anything, no matter what color profile I choose.
    -Now, here's the twist. I didn't have any of these problems when I use the 244T. This leads me to assume that the problem is how the U3011 is interacting with Lightroom. I did a quick comparison of opening up the same image on both monitors in ACDSee Pro, and they looked identical. (At this point, I had the U3011's preset set to sRGB. This is the only preset that makes the U3011 look identical to the 244T).
    Next, I did an experiment, and I was very surprised by what happened. This is what I did:
    With both monitors as a dual display setup, I turned on Before/After comparison in Lightroom (made sure both version had the same setting and look identical by copying the After's setting to Before). I then moved Lightroom's window so that one photo is seen on the U3011, and the other shows up on the 244T. And OMIGOD, they looked different! Why is this happening? I've already established that the same image looks identical on both monitors when viewed with ACDSee Pro, but in Lightroom, they looked different on each monitor.
    And then things got even more weird. When I dragged the Lightroom window fully to one monitor or the other, Lightroom actually started changing the colors right before my eyes as it responded to which monitor was displaying which photo! Lightroom was somehow interacting with the monitor in real-time. So if the Before looked muted on U3011 and the After looked vivid on the 244T, when I drag the whole window into 244T, the muted Before will stay muted for about a second or so, and then it'll suddenly change and become identical to After. And when I did the reverse (drag the window into U3011), the reverse also happened--the vivid After will stay vivid on U3011 for about a second or so, and then it would suddenly change and become muted. Lightroom was identifying each monitor's color profile setting and changing the images according to which monitor was doing the displaying, and when the images were split between the two monitors, Lightroom was slitting them into two different settings to match whichever monitor is displaying which side.
    So what the hell does that all mean, and what can I do to get Lightroom to display the photos so that they look the same as on all the other software I mentioned (so I don't have to play the guessing game of editing the images, export them out to other software to check how they turned out). Also, remember that I didn't have this problem with the 244T--Lightroom displayed the photos the same way as the other software I mentioned. The problem right now is that the U3011 is somehow causing Lightroom to display the photos differently, and no color profile presets in the OSD control can make them match.
    I need to solve this problem, or else my last resort would be to return the U3011 and try another brand/model and see if that helps.
    Any ideas?

    Yes, that's basically sensible advice you got there (but I was more succinct ).
    An important point that was mentioned over there is that you must not confuse document/source profile with monitor profile. They are both links in the color management chain, but they serve different purposes. The document profile defines the colors in a standard color space. The monitor profile describes the monitor's own native color space - its response to the RGB numbers it's fed. So one is translated into the other, by the application on the fly, through a normal profile conversion, and that way the colors appear on-screen as intended.
    If those two profiles/color spaces are roughly similar, as they would be in the case of an sRGB document displayed on a standard gamut display - then you can get by without color management. It won't look too far off. But a wide gamut monitor changes the rules, because its native color space is not similar to sRGB, it's much closer to Adobe RGB.
    Anyway, this is what color management is about. Any profile can be translated into any other. So in this context it doesn't really matter what color space the document is in - as long as you have a good monitor profile it will display correctly (within practical limitations). Lightroom is a sort of special case because its internal working color space is not one of the standard ones, instead it's a modified ProPhoto space with linear gamma. But the basic principle is exactly the same: source profile > monitor profile.
    Just to go a little more in-depth while I'm at it: When you calibrate a display you actually do two separate things. You first calibrate it to a more or less standardized response. But that's just a linear one-dimensional correction. It does nothing about how color is actually reproduced, how red is red for instance. The calibration is global and affects everything system-wide because it's read into the video card or monitor hardware.
    Then, once calibrated, a monitor profile is made. This is a full, complete and accurate description of the monitor's behavior, in three-dimensional color space. The precision level is much higher. This profile is used, by color managed applications like Lightroom and Photoshop, to display the image.
    Other applications that are not color managed will simply ignore this profile, and send the RGB numbers straight through to the display, unmodified. With a standard gamut monitor (and an sRGB document) the difference won't be too dramatic and you may not notice it unless you look closely. But a wide gamut monitor will make the difference jump out immediately.

  • [SOLVED] Help with dual monitors (second monitor won't wake up)

    Hi.  I'm trying to set up dual monitors, but I can't seem to get it to work. 
    I've got an ASUS P8H67-M EVO motherboard, and I'm using the xf86-video-intel driver.  I'm using one VGA and one HDMI.
    xrandr gives this
    xrandr
    Screen 0: minimum 320 x 200, current 1920 x 1080, maximum 32767 x 32767
    VGA1 connected 1680x1050+0+0 (normal left inverted right x axis y axis) 474mm x 296mm
    1680x1050 60.0*+ 74.9
    1600x1000 60.0
    1280x1024 75.0 72.0 60.0
    1440x900 75.0 59.9
    1152x864 75.0
    1024x768 75.1 70.1 60.0
    800x600 72.2 75.0 60.3
    640x480 72.8 75.0 66.7 60.0
    720x400 70.1
    HDMI1 disconnected (normal left inverted right x axis y axis)
    DP1 disconnected (normal left inverted right x axis y axis)
    HDMI2 disconnected (normal left inverted right x axis y axis)
    HDMI3 connected 1920x1080+0+0 (normal left inverted right x axis y axis) 531mm x 299mm
    1920x1080 60.0*+ 50.0 60.0
    1920x1080i 50.0 60.1
    1680x1050 59.9
    1600x900 60.0
    1280x1024 75.0 60.0
    1280x960 60.0
    1152x864 75.0
    1280x720 50.0 60.0
    1152x720 60.0
    1440x576i 50.1
    1024x768 75.1 60.0
    1440x480i 60.1
    832x624 74.6
    800x600 75.0 60.3
    720x576 50.0
    720x480 59.9
    640x480 75.0 60.0 59.9
    720x400 70.1
    DP2 disconnected (normal left inverted right x axis y axis)
    DP3 disconnected (normal left inverted right x axis y axis)
    So it looks to me like both displays are being detected.  The geometry looks such that one display is on top of the other, but I can change that using an xorg.conf.d config file (e.g. https://wiki.archlinux.org/index.php/Mu … xorg.conf).  I also tried using arandr.
    The real problem is that the display on HDMI3 just isn't "waking up".  The power is on, but it just sits there in sleep mode.
    Any help would be great.  I might just be missing something simple.  Thanks.
    Edit:  I just saw a short list of window managers near the bottom of the Arch Multihead page (https://wiki.archlinux.org/index.php/Mu … _xorg.conf).  I don't see openbox on that list.  Does that mean I'm SOL if I want to use openbox with multiple monitors?  This page seems to imply that it should work fine with openbox http://magnatecha.com/dual-monitors-wit … nd-xrandr/.
    Last edited by Pacopag (2013-08-19 18:58:36)

    I use XFCE, and when I boot my computer I just run:
    xrandr --output DVI-I-1 --auto --output DVI-I-2 --auto --left-of DVI-I-1
    I'm assuming if you modify the names appropriately that it'll work too.  I have had issues before trying to run dual monitors without taking both outputs off of a single video card (which is what I'm doing now).  For example, I had a graphics card with one (VGA) output and a VGA output on my motherboard.  But, connecting the graphics card disabled the on-board VGA.  So it is possible (I'm not an expert here) that two displays coming off the motherboard may not work for hardware reasons.

  • Help with faulty monitor

    Hi all
    I have a 19" CRT monitor which I use with my G5. The monitor has developed a fault and I wonder if anyone might be able to help diagnose what the problem is.
    Whenever there is a large area of white on the screen the picture develops a high frequency wobble in a horizontal band accross the screen. This is accompanied by a squealing sound from the monitor itself.
    Does anyone know what might be the cause of this and is it likely to be repairable?
    Thanks in advance...
    Derek.

    Letter from LaCie technical support. It seemed to help me, the monitor is working fine, must have been loose connection.
    Thanks for contacting LaCie Technical Support. Try the following to see
    if they resolve your issues:
    --Try a different VGA cable to eliminate that as a cause (if this
    monitor's cable is not built-in).
    --Try the monitor on a different computer or a different monitor on the
    same computer to verify it is not a video card issue.
    The following two especially apply if the monitor has been moved, or
    there have been changes in the environment around the monitor.
    --The monitor can be affected by magnetic or electromagnetic energy.
    Make sure there are no magnets on or by the monitor (especially
    speakers). Keep the monitor and its cables away from motors,
    high-voltage areas, electrical cords, metal poles, etc.--anything that
    can produce or conduct electricity or magnetism.
    ----The monitor can be affected by dirty power. Put the monitor on a
    power conditioner on a dedicated circuit if at all possible. Appliances
    sharing the same circuit can cause trouble--blenders, microwaves,
    hairdryers, fans, even other monitors, etc. Also, try a different
    circuit in case the circuit you are using is wired incorrectly.
    Please include all previous messages if you reply. This information will
    be required by the email support team to further assist you. Thank you.
    Answers to most common questions can be found in the manual on the CD
    that came with your product or in our FAQs:
    http://www.lacie.com/support/faq/
    Regards,
    LaCie Technical Support Team

  • HELP with HP monitor 2309m

    Today I turn on my HP monitor and I get only a color patterns.
    http://youtu.be/2bgwI4rh2Lc
    The cable is well attached to the monitor and the PC, I also changed the VGA cable.
    My PC is sending the video signal, I tested it with another monitor.
    As soon as I turn on my monitor, those patterns appeared. I turned off the monitor and turned it on again, and they reappeared. They are like a test pattern.
    Can someone tell me what is wrong with my monitor and how can I fix it?
    Thanks!

    Hello @Gannd,
     I understand that your HP Pavilion 2309m LCD wide-screen monitor is only giving you color patterns on it's display. I am providing you with some steps you can try below:
    Step 1. Unplug the power cord from the back of the monitor and the wall
    Step 2. Hold the power button down for at least one minute
    Step 3. Plug the power cord back into the monitor and then into the wall outlet (not a power bar or surge protector)
    Step 4. Press the Menu button on the monitor
    Step 5. Navigate to the Factory Reset option and select it
    Step 6. Try different cables between your computer and monitor.
    If the above steps did not resolve your issue you can try the monitor on a computer or other device to see if the issue persists. Please call our technical support at 800-474-6836. If you live outside the US/Canada Region, please click the link below to get the support number for your region. http://www8.hp.com/us/en/contact-hp/ww-phone-assist.html
    Thank you for posting on the HP Forums. Have a great day!
    Please click the "Thumbs Up" on the bottom right of this post to say thank you if you appreciate the support I provide!
    Also be sure to mark my post as “Accept as Solution" if you feel my post solved your issue, it will help others who face the same challenge find the same solution.
    Dunidar
    I work on behalf of HP
    Find out a bit more about me by checking out my profile!
    "Customers don’t expect you to be perfect. They do expect you to fix things when they go wrong." ~ Donald Porter

  • Help with multiple monitors

    Hi Guys,
    I've run in to a bit of an issue with my MP. I run three monitors off two GT120 cards. They work great in OSX and did work fine in Win7. We've just moved and when Ifired up the mac again at the new place the three monitors work fine in OSX still but when I bootcamp in to Win7 it will only work with one monitor if I power up the other two it either rearranges the screens around of blanks them all so that I end up with a black screen that I can move the mouse pointer around on and the other screens say they have no input and switch off. Occasionally win7 shuts down completely!
    It's got me baffled.......I don't know windows that well to start rummaging around too much and OSX is working fine so the hardware is OK. HELP!!
    Cheers
    Mike
    P.S. Everything is up to date.............in fact nothing has changed since the whole set-up was moved to the new house.

    I think I have it worked out. I put the Kona card in "input passthrough" mode and all seems to work just fine. I had it in MacIntosh desktop and that was causing my problem
    If any other suggestions I am sure open to them.
    Thanks
    John

  • Help with Secondary Monitor

    I have my laptop hooked up to a LCD TV on when I go to drag my iTunes window onto the TV the video starts to skip. Checked the refresh rates on the video card and everything matches with the TV's refresh rate. Please help if you can!
    iTunes 8 and Windows XP.

    Activity Monitor can display system processes, so use it to ascertain which ones those are. There are other selections, so cycle through and see what's going on. Do note that those apps you installed may have put things into various Library directories. Look inside LaunchAgents, LaunchDaemons, and StartupItems subfolders and delete anything related to them. For general maintenance information, see
    Mac Maintenance Quick Assist,
    Mac OS X speed FAQ,
    Speeding up Macs,
    How to Speed up Macs, ,
    Macintosh OS X Routine Maintenance,
    Essential Mac Maintenance: Get set up,
    Essential Mac Maintenance: Rev up your routines,
    Maintaining OS X, 
    Five Mac maintenance myths and
    Myths of required versus not required maintenance for Mac OS X

  • Pls. help with JMS monitor

    I need all the help I can get from each of you.
    I have to implement a GUI for system admin to interact with JMS activities and I have no clues what kind of activities I should display on the GUI in term of JMS. Pls. advice if you have done something like/similar to this or have some ideas.
    Thanks in advance!

    Check out Hermes JMS Explorer (http://hermesjms.sourceforge.net) - it can do just about all you can do without actually using server libraries and hooking into preexisting JMS server code.
    It allows you to browse JMS destinations (queues, topics) as well as monitor, consume and produce (put) messages.
    Hope this helps,
    -Scott

  • Help with dual monitors

    I installed Arch on an old Asus MB, and have spent a couple days trying to get dual monitors working. The board is a P4S8X-X with no onboard video, an AGP slot, and six PCI slots.
    First, I tried using an AGP card together with a PCI card with no luck.  I tried using two ATI pci video cards, again no good.
    So, I downloaded a MB manual and discovered that the PCI slots and the AGP slot are all shared. Quote the manual: "When using PCI cards on shared slots, ensure that the drivers support 'Share IRQ" or that the cards do not need IRQ assignments.  Otherwise, conflicts will arise between the two PCI groups, making the system unstable and the card inoperable."
    I'm wondering if dual monitors are possible with this board.  I have another Asus board with an AGP and three PCI slots apparently not shared.
    Couple years ago, I installed dual monitors on my FreeBsd computer, using two cards on an MSI board, with no trouble.  What I'm looking for is two independent monitors, each able to run an application.  I use the JWM window manager. I haven't posted an xorg.conf file as there have been too many to display.
    Any help is appreciated.

    Problem solved.  I switched motherboards and dual monitors are running.

  • Need help with this Generics Warning

    Hi All,
    I could not understand what the following Generics Warning means
    Type safety: The cast from Object to HashMap<String,Object> is actually checking against the erased type HashMap
    Could anyone please help me with this.
    Here is the erring line of Code :
    HashMap<FDTColumInfoKey, ColumnInfo> designMap = (HashMap<FDTColumInfoKey, ColumnInfo>)wdContext.currentContextElement().getColumnInfoMap();
    Thanks !

    SloMoe wrote:
    Hi Malcolm,
    tnx for taking time to answer my query, but doesn't Generics give an exception during compile time as opposed to Run Time ? I mean if the attributes type in the Generic definition does not match with the type of the attributes during Compile time, An exception will be thrown. So why the warning ?Because, in this case, there's no way that the compiler can check the correctness of the generics. You're telling the compiler that the object you retrieve is of the relevant generic types but the compiler can't verify it.
    That's also true with an ordinary cast from Object, of course, but if with an ordinary cast at least the run time will verify that the object is actually of the required type where the cast is made and throw a CastClassException immediately. So it's easy to debug.
    With generics the run time doesn't have access to the generics data. This is what is meant by "erasure". So it can check that the object is a HashMap when casting, but not that it contains the right type of entries. This means that, at some later point in the code, it might retrieve an object from the map and discover that it's of the wrong type, thus causing a ClassCastException in a statement with no explicit cast.

  • Help with Audio Monitoring

    Hey everyone.
    I am new to both Mac's and Logic, but not to audio recording. I have a question that seems very simple, but yet I cannot seem to find an answer in the user guide, or the Sittter Pro Training Series books. I
    I've configured my exernal MIDI devices to Logic (I'm using the Microlite interface). They show in the enviroment, and I've recorded MIDI data. I've played back MIDI data.
    Lets say I have recorded a MIDI drum part using an external drum machine. In order to hear the audio output, after recording, I hook up the audio outs of the drum machine, to my MIDI interface (MOTU Traveler) and I assign an audio track in Logic to receive the audio signal. And here is where it gets fishy.
    I have to hit the record button in Logic in order to hear audio, as the MIDI date is triggering my external drum machine. But what if, say, I want to record a mic'd source (or anything for that matter), but also need to monitor the drum machine audio triggered by my recorded MIDI data? I don't want to record the audio from the drum machine, I just want Logic to trigger it...as I need to hear the beat during recording.
    I know I'm missing something.....
    Thanks,
    Jeff

    Hi
    You shouldnt need to put the drum machine audio into record to hear it. The Motu traveller should be able to route the audio from the drum machine to the outs 1-2 of the Motu unit.
    To do this use Cuemix - should come with the motu software. This allows you to monitor any hardware you have without necessarily going into the software program and recording it just to hear it.
    I that doesnt help, if you have a small amplifier, plug the drum machine into that. The midi from Logic will trigger the drum machine - all you are needing is an amp to hear it.
    Hope this helps.
    B
    G5 1.8/ 3GB Ram Logic Pro 7.1.1   Mac OS X (10.4.6)  

  • Help with TV monitor.....it's magnified with HD projects

    Hi,
    I use a TV as my monitor for Motion, it comes out of my Mac Pro via firewire into a datavideo DAC-200 box.
    I recently switched to HD and now my image on my TV monitor is "zoomed in" or "very enlarged".
    Previously when working with DV footage everything fit into the tv screen size. Now my HD footage is not scaling down to the TV size.
    It looks fine on the Motion canvas but on the TV monitor it is zoomed in.
    Also when I monitor HD footage in Final Cut on the TV monitor it fits on the TV screen fine. I don't understand why the same set up works with HD footage in Final Cut but not Motion?
    Any suggestions?
    Thanks

    Some more notes, I suspect you're using hdv as a source, correct? Under the FCP Help menu, there is a pdf called "New Features." Open that up to page 8. With Final Cut Pro 6, firewire monitoring of hdv is available, although as I understand it, FCP does a downconversion.
    Lots of good reading under that Help menu selection.

  • Need help with T61

    Hi all,
    I have already reinstall XPSP2 on my T61 7659A21 and I have downloaded all driver in web lenovo.com but  I still have some probs with these devices:
    - Sound card not recorgnize in " dxdiag " and I don't hear anything.(Although I have installed UAA HDA of Microsoft,HDA of HP-> it's not works)
    -  DVDRAM does'nt recognize DVD's but CD's is allright.
    - FN F5 key,Bluetooth device .
     On pro " lenovo systems toolbox" ,it appears 7 issues not installed correctly
    + Audio Device  on HDA bus 
    + Modem Device on HDA bus
    + Base systems device
    + SM Bus controller  
    PLZ help me soon!
    Thanks all. 

    My DVD has no longer a driver ? How can I solved this problem?
    and My bluetooth device is not avaiable too,when I turn Fn+F5 ,nothing happen
    Help me plz!!!! 

Maybe you are looking for

  • Looking for a mail app... any recommendations?

    I use my mac for business, and send many emails out to vendors and suppliers and manufacturers on a variety of customer issues. Often, it takes me several emails before I get a reply on a given issue. Sometimes I forget to follow up on a particular e

  • Appended field Vendor Group in LFB1 does not display in FK03

    Hi , I had a problem with FK03 transaction I was not able to view the field I appended in table LFB1 which is Vendor group for spanish log-in in the system but for english log-in I was able to view the field I appended is language. Please advice what

  • Best Practices for VidConf with external parties

    We currently use Sony Video conference units for our end units. On the backend, we use a Cisco 3515 for multipoint conferences. We now need to be able to do video conferences with external parties using our MCU. Since there are many ways of doing thi

  • Queries for FOR ALL ENTRIES IN

    1. If I use For all entries in inspite of loop within loop , wil it help in        increasing processing time ?? 2. There is one problem in For all entries in , it is not fetching all       entries but it left entries having same data so is it like t

  • Turn pdf docs into a continuous document

    I have a continuous document feeder for scanning, but I need to know how to merge the continuous pdf's into one continuous document so I'm not sending 35 separate pdfs to my client.  Can someone tell this green pdf person how to do this? thank you!