Help Please Repeat Region not repeating all records only repeating 7 records

Hi all,
Please can you advise what's going on here - I'm building an
ASP SQL site and all was going well until my colleague pointed out
that the repeat region is not repeating all records as i've coded
it to using Dreamweavers Repeat region SB, it appears to be
defaulting to 7 repeats?????? I'm completely stuck as to why this
is - any help would be appreiated - I've attached the code -
The recordsets that i'm trying to repeat all on are -
menuone
livesubject
ArchiveSubject
Thanks for the help

Worry not i solved this problem, it's the thing about cutting
and pasting server behaviours in Dreamweaver MX 2004 - never works
properly - is CS3 any better??? a True review please --
Thanks

Similar Messages

  • Email php function repeat region not working

    i have a form that needs to be emailed and it as products attached to it. however i have a repeat region to list all the products but when i email it ithe email only shows the first item on the list.
    below is the form set up
    //emailer
        // Email new tenant information
            $to = '[email protected]';// . ',' . '$row_rsOrder["Email"]';
            //$to = $row_rsOrder["Email"];
            $subject = "Your Order Details";
            $message = "
    <html>
    <head>
    <title>Dear ".$row_rsOrder['FirstName'].$row_rsOrder['LastName']."  please see your Order Details Below</title>
    </head>
            <body>
            <img src=\"http://www.website.com/images/logoBLPP.jpg\" alt=\"" />
            <h2>Your B Order".$row_rsOrder['OrderID']."</h2>
            <table width='800' border='0' cellspacing='0' cellpadding='0'>
                            <tr><td><p>Thank you for shopping  below are you details of the order you have recently placed. If you have any questions please contact us</p>
      <br />
            </a></p>
                            <tr><td></td></tr></table>
    <table width='980' border='1' cellspacing='0' cellpadding='10'>
          <tr valign='top'>
            <td bgcolor='#E9E9E9' class='header1'>Customer Name</td>
            <td class='text'>".$row_rsOrder['FirstName'] . $row_rsOrder['LastName']."</td>
            <td bgcolor='#E9E9E9' class='header1'>Order ID</td>
            <td bgcolor='#E9E9E9' class='text'>".$row_rsOrder['OrderID']."</td>
            <td bgcolor='#E9E9E9' class='header1'>Order Status</td>
            <td class='text'>".$row_rsOrder['TransactResult']."</td>
          </tr>
          <tr valign='top'>
            <td bgcolor='#E9E9E9' class='header1'>Email</td>
            <td class='text'>".$row_rsOrder['Email']."</td>
            <td bgcolor='#E9E9E9' class='header1'> </td>
            <td class='text'> </td>
            <td bgcolor='#E9E9E9' ><span class='header1'>Order Date</span></td>
            <td class='text'>".makeDateTime($row_rsOrder['OrderDate'], '%#d %B %Y', true)."</td>
          </tr>
          <tr valign='top'>
            <td bgcolor='#E9E9E9' class='header1'>Shipping Address</td>
            <td class='text'><p>".$row_rsOrder['Address']."</p>
              <p>".$row_rsOrder['Town']."</p>
              <p>".$row_rsOrder['PostCode']."</p>
              <p>".$row_rsOrder['Country']."</p>
              <p> </p></td>
            <td> </td>
            <td> </td>
            <td colspan='2' align='right' valign='bottom'><span class='header'> ORDER TOTAL:".DoFormatCurrency($row_rsOrder['Total'], 2, ',', '.', '£ ', '')."<br />
              </span><span class='text'>Shipping:".DoFormatCurrency($row_rsOrder['Shipping'], 2, ',', '.', '£ ', '')."</span><span class='header'><br />
            </span></td>
          </tr>
          <tr valign='top'>
            <td bgcolor='#E9E9E9' class='header1'>Product ID</td>
            <td bgcolor='#E9E9E9' class='header1'>Product Description</td>
            <td bgcolor='#E9E9E9' colspan='2' class='header1'>Size</td>
            <td bgcolor='#E9E9E9' ><span class='header1'>Quantity</span></td>
            <td bgcolor='#E9E9E9' align='right'><span class='header1'>Price</span></td>
          </tr>
          <?php do { ?>
          <tr valign='top'>
            <td class='text'>".$row_rsOrder['ProductID']."</td>
            <td class='text'>".$row_rsOrder['Product'].','.$row_rsOrder['catname']."</td>
            <td colspan='2' class='text'>".$row_rsOrder['UnitSize']."</td>
            <td><span class='text'>".$row_rsOrder['Quantity']."</span></td>
            <td align='right' class='text'>". DoFormatCurrency($row_rsOrder['UnitPrice'], 2, ',', '.', '£ ', '')."</td>
          </tr>
          <?php } while ($row_rsOrder = mysql_fetch_assoc($rsOrder)); ?>
            <tr valign='top'>
            <td class='text'> </td>
            <td class='text'> </td>
            <td colspan='2' class='text'> </td>
            <td> </td>
            <td> </td>
          </tr>
        </table>
    </body>
    </html>
            // Always set content-type when sending HTML email
            $headers = "MIME-Version: 1.0" . "\r\n";
            $headers .= "Content-type:text/html;charset=UTF-8" . "\r\n";
            $headers .= 'From: company name <[email protected]>' . "\r\n";
            $send = mail($to, $subject, $message, $headers);

    Yes, ALL product information in the database were retrieved and sent to the email. Only 3 products for testing purposes.
    I just tested it down to the do-while loop. The html table code after that is missing.
    You have to bare in mind this is a crude test. The database set up query is not as complex as yours is so that may be why its working but certainly breaking up the 'message' is the way to go. I may try and get the products from another table tomorrow if I have time to test.
    The html code and column database names are the same as you have. the recordeset is 'rsOrders' instead of 'rsOrder' that you used,
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $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;
    mysql_select_db($database_conDonations, $conDonations);
    $query_rsOrders = "SELECT * FROM orders";
    $rsOrders = mysql_query($query_rsOrders, $conDonations) or die(mysql_error());
    $row_rsOrders = mysql_fetch_assoc($rsOrders);
    $totalRows_rsOrders = mysql_num_rows($rsOrders);
    //emailer
        // Email new tenant information
    $to = '[email protected]';// . ',' . '$row_rsOrder["Email"]';
            //$to = $row_rsOrder["Email"];
    $subject = "Your Order Details";
    $message = "
    <html>
    <head>
    <title>Dear ".$row_rsOrders['FirstName']." please see your Order Details Below</title>
    </head>
            <body>
    <img src=\"http://www.website.com/images/logoBLPP.jpg\" alt=\"\" />
    <h2>Your B Order".$row_rsOrders['OrderID']."</h2>
    <table width='800' border='0' cellspacing='0' cellpadding='0'>
    <tr><td><p>Thank you for shopping  below are you details of the order you have recently placed. If you have any questions please contact us</p>
    <br />
    </a></p>
    <tr><td></td></tr></table>
    <table width='980' border='1' cellspacing='0' cellpadding='10'>
          <tr valign='top'>
            <td bgcolor='#E9E9E9' class='header1'>Customer Name</td>
            <td class='text'>".$row_rsOrders['FirstName']."</td>
            <td bgcolor='#E9E9E9' class='header1'>Order ID</td>
            <td bgcolor='#E9E9E9' class='text'>".$row_rsOrders['OrderID']."</td>
            <td bgcolor='#E9E9E9' class='header1'>Order Status</td>
            <td class='text'>".$row_rsOrders['TransactResult']."</td>
          </tr>
                             <tr valign='top'>
            <td bgcolor='#E9E9E9' class='header1'>Email</td>
            <td class='text'>".$row_rsOrders['Email']."</td>
            <td bgcolor='#E9E9E9' class='header1'> </td>
            <td class='text'> </td>
            <td bgcolor='#E9E9E9' ><span class='header1'>Order Date</span></td>
            <td class='text'>".$row_rsOrders['OrderDate']."</td>
          </tr>
                            <tr valign='top'>
            <td bgcolor='#E9E9E9' class='header1'>Shipping Address</td>
            <td class='text'><p>".$row_rsOrders['Address']."</p>
              <p>".$row_rsOrders['Town']."</p>
              <p>".$row_rsOrders['PostCode']."</p>
              <p>".$row_rsOrders['Country']."</p>
              <p> </p></td>
            <td> </td>
            <td> </td>
            <td colspan='2' align='right' valign='bottom'><span class='header'> ORDER TOTAL:".$row_rsOrders['Total']."<br />
              </span><span class='text'>Shipping:".$row_rsOrders['Shipping']."</span><span class='header'><br />
            </span></td>
                                      </tr>
          <tr valign='top'>
            <td bgcolor='#E9E9E9' class='header1'>Product ID</td>
            <td bgcolor='#E9E9E9' class='header1'>Product Description</td>
            <td bgcolor='#E9E9E9' colspan='2' class='header1'>Size</td>
            <td bgcolor='#E9E9E9' ><span class='header1'>Quantity</span></td>
            <td bgcolor='#E9E9E9' align='right'><span class='header1'>Price</span></td>
          </tr>";
                            ?>
    <?php do { ?>
    <?php $message .="  <tr valign='top'>
            <td class='text'>".$row_rsOrders['ProductID']."</td>
            <td class='text'>".$row_rsOrders['Product']."</td>
            <td colspan='2' class='text'>".$row_rsOrders['UnitSize']."</td>
            <td><span class='text'>".$row_rsOrders['Quantity']."</span></td>
            <td align='right' class='text'>".$row_rsOrders['UnitPrice']."</td>
          </tr>";
                            ?>
    <?php } while ($row_rsOrders = mysql_fetch_assoc($rsOrders)); ?>
    <?php $message .="
    </body>
    </html>";
            // Always set content-type when sending HTML email
            $headers = "MIME-Version: 1.0" . "\r\n";
            $headers .= "Content-type:text/html;charset=UTF-8" . "\r\n";
            $headers .= 'From: company name <[email protected]>' . "\r\n";
            $send = mail($to, $subject, $message, $headers);
    mysql_free_result($rsOrders);
    ?>

  • In content editing repeating regions not working Safari 6.05 and Google Chrome v30.0.1599.66 mac? No

    In content editing repeating regions not working Safari 6.05 and Google Chrome v30.0.1599.66 mac?
    Marquees not showing, works perfectly fine on PC IE 9.
    Can edit text put cannot duplicate regions?
    Can anyone advise? Not good if the client worjs on Mac.

    Marquees the HTML tag? It's the most hated HTML tag out there, most browsers removed it because it was such a pain to see in 1996 scrolling images and scrolling everything

  • I used utilities to source my 10.6 snow leopard install disc to my main hardrive, and now when I turn on my computer the apple with the spinning wheel stays on the screen and stuck like that. How do I fix it Help please. I already tried all the commands

    I used utilities to source my 10.6 snow leopard install disc to my main hardrive, and now when I turn on my computer the apple with the spinning wheel stays on the screen and stuck like that. How do I fix it Help please. I already tried all the commands such as Command R, Holding down the Option key, C and holding down shift at the start up but nothing happens.
    initialy All I was trying to do was downgrade 10.7 to 10.6 .

    You have to consider the possibility the hard drive may be dying.    If your data isn't backed up, try one of the tools below:
    https://discussions.apple.com/docs/DOC-1689
    Once you are sure your data is backed up, we can examine other possibilities.  In the meantime call AppleCare for your original installation DVDs.  You may need them.

  • Repeating regions not working in Contribute 6.5

    Repeating regions that work inside Dreamweaver aren't working in Contribute 6.5 where I get the error message "You can't add items to repeating regions because the draft's parent template is missing or not available to users in your role. Please contact the website administrator"
    My role is administrator and this happens on pages based on single templates and nested templates as well as local files and pages published on a site.
    The problem seems to run through several different versions of Contribute going back at least 5 years but I haven't found a solution yet.

    For me the problem is different. I don't even get to to see the add/delete buttons, so I can not add och delete a new region! I am tryong to chat with the adobe support right now, but I am not feeling very succesful. Is anyone from Adobe reading this? (It is working in CS5)

  • Repeat regions not working in Contribute

    I've got a problem with repeat regions inside templated
    pages. When in contribute, I can't seem to add a new repeat region
    by clicking on the plus (+) button, although it works fine in
    dreamweaver. It isn't a permissions issue as far as I can tell,
    since all roles have the ability to see and edit all documents, but
    I can't figure out what else could be going on here. Any
    ideas?

    I think it's just a problem with Contribute's handling of
    PHP. There was a small chunk of PHP code in a library item that had
    to be removed. I was trying to save the value of a server variable
    into a local variable, but had to end up putting the exact same
    call in an inclue file instead. I just put the include statement
    inside the library item so it showed up site-wide. The include
    statement didn't do anything screwing during 'edit mode' in
    Contribute, so that was the workaround.

  • HELP please! iphone not working because of 2.02 update!

    So my phone is not working. AT ALL.
    It just shows that I need to plug in my iphone cord and then an arrow that points to the iTunes icon. Then I've been doing that, but it prompts me in iTunes that I need to Restore. So I click restore and it says "contacting the iPhone software update server..." for 15 MINUTES now.
    I am absolutely furious because I haven't been able to use my phone for 3 hours now and this is taking forever. It came out of nowhere.
    I also have a stable internet connection. Is the iTunes store messed up right now? someone help please!

    Sorry to hear about your problems...iTunes Store appears to be working properly right now. Did you already have the 2.0.2 update on the iPhone? If so, you should have the backup file in your computer under Users/(your user)/Library/iTunes/iPhoneSoftwareUpdates. If it isn't there, you should be able to download it from the apple site (I think). If not, you can install ANY version of the software by holding down the 'option' key while clicking 'Restore' (not sure which modifier key to hold in Windows)...this will bring you to a dialog box that will let you select a file...navigate to the above mentioned folder and choose the latest software you have. Good luck!!!

  • HELP: Premiere Pro CC not using all CPU and RAM during rendering and export

    Hello,
    I am using Premiere Pro CC on a Windows 7. My timeline is quite simple with two videos, one with the movie (mpeg) and the other with the subtitles (avi).
    When I render the sequence in PP or export, the rendering time is way too slow and it only uses around 15-20% of the CPU and 3 GB of RAM.
    My hardware config is :
    - CPU : i7-4770k 3.50Ghz
    - RAM : 8 GB
    - Disk : 2 x 3 TB SATA (no raid)
    RAM is not the bottleneck, neither the disk access.
    I have tried rendering and exporting the same project on an iMac (with an i5 2.7 Ghz and 4 GB RAM and only 1 disk) and the result is 4x faster !!!
    The CPU usage is close to 100% as well as RAM usage.
    So how come PP uses all resources availble on an iMac and not on a Windows 7 ?
    Is there any known bug or software bottleneck on Windows 7 ?
    My machine is brand new and nothing much installed besides Adobe products.
    Any help is very much appreciated.
    Thanks,

    I just rendered out a a 2 minute sequence with about 100 clips in it and Colorista effects on everything to the Vimeo 1080 H264 preset. It took about 5 minutes to render straight from Premiere, it used all the recourses it could, my CPU was running at near %100, same with my ram and GPU, I was happy.
    Then I did another render with Red Giant Denoiser and it now wants to take 30 mins and it is only using about %20 of the recourses available. My problem isn't that its taking longer with Denoiser but that its not using all of my computers CPU and GPU.
    Im rendering at maximum render quality and bit dept to H264 (Im happy to wait the extra time), if I try to use VRB 2 it encodes 1 pass at a time and wants to take up to 40 minutes.
    I would appreciate some advice on this.
    Premiere Pro CC 2013
    2.6 GHz Intel Core i7
    NVIDIA GeForce GT 750M 2048 MB (CUDA GPU enabled in Premiere)
    16 GB 1600 MHz DDR3
    OS X 10.9.4 (13E28)

  • Help please flash will not install.

    Hi tried all day to install flash on my first macbook. Tried everything. uninstalled, firewall is off, safari plug-ins enabled. Any help please?

    Thank you to Mike M for your post in Oct 2013. Followed it and it worked first time. What a waste of a day.

  • PHP repeat region not repeating

    Hello,
    Not sure if this or PHP application is te right forum so I posted it in both. So I am trying to get Dreamweaver to show all the returned records from my sql query but it only shows the first record even though $totalrows_rs_WineNotes shows up as more.
    Here is what the code looks like:
    <?php require_once('../Connections/PF_WINE.php'); ?>
    <?php
    $Wine = $_POST['Wine'];
    $Vintage = $_POST['Vintage'];
    $Vineyard = $_POST['Vineyard'];
    $Varietal = $_POST['Varietal'];
    $Appellation = $_POST['Appellation'];
    $Producer = $_POST['Producer'];
    ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $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;
    $Vintage_rs_WineNotes = "0";
    if (isset($Vintage)) {
      $Vintage_rs_WineNotes = $Vintage;
    mysql_select_db($database_PF_WINE, $PF_WINE);
    $query_rs_WineNotes = sprintf("SELECT * FROM WINE WHERE WINE.WINE_VINTAGE = %s", GetSQLValueString($Vintage_rs_WineNotes, "int"));
    $rs_WineNotes = mysql_query($query_rs_WineNotes, $PF_WINE) or die(mysql_error());
    $row_rs_WineNotes = mysql_fetch_assoc($rs_WineNotes);
    $totalRows_rs_WineNotes = mysql_num_rows($rs_WineNotes);
    mysql_free_result($rs_WineNotes);
    ?>
    <?php echo $totalRows_rs_WineNotes ?>
    <p></p>
    <?php do { ?>
      <hr />
      <p><?php echo $row_rs_WineNotes['WINE_VINTAGE']; ?></p>
      <p><?php echo $row_rs_WineNotes['WINE_PRICE_RANGE']; ?></p>
      <p><?php echo $row_rs_WineNotes['WINE_ID']; ?></p>
    <p><?php echo $row_rs_WineNotes['VARIETAL_TYPE_ID']; ?></p>
      <?php } while ($row_rs_WineNotes = mysql_fetch_assoc($rs_WineNotes)); ?>

    JoeSmoe_03 wrote:
    mysql_free_result($rs_WineNotes);
    ?>
    <?php echo $totalRows_rs_WineNotes ?>
    <p></p>
    <?php do { ?>
      <hr />
      <p><?php echo $row_rs_WineNotes['WINE_VINTAGE']; ?></p>
      <p><?php echo $row_rs_WineNotes['WINE_PRICE_RANGE']; ?></p>
      <p><?php echo $row_rs_WineNotes['WINE_ID']; ?></p>
    <p><?php echo $row_rs_WineNotes['VARIETAL_TYPE_ID']; ?></p>
      <?php } while ($row_rs_WineNotes = mysql_fetch_assoc($rs_WineNotes)); ?>
    You're using mysql_free_result(), which deletes the database result from memory, before trying to loop through it.
    mysql_free_result($rs_WineNotes); should go right at the end of the script.
    BTW, I see you posted a question about this in the Dreamweaver Help pages. Please do not post in two places at the same time. This forum (http://forums.adobe.com/community/dreamweaver/dreamweaver_development) is the appropriate place for such questions.

  • Help please Whats app not working at all

    hello all
    my whatsapp just stopped working one day when I did a battery pull, I have deleted the app and downloaded it again, done a soft and a hard reset, I even updated my blackberry to the new firmware 6.0 bundle 2949 (v6.0.0.668) platform 6.6.0.236 on the Blackberry curve 9300 and still no luck.
    I’m using whatsapp 2.7.2723 my WHATSAPP will not even pass the phone number verify check stage and when it does (after about 3 battery pulls) it gets to the updating stage and just freezes on me very upsetting to see your blackberry can do theses kind of thing to you L
    I’m in dying need of help
    Thanks
    Solved!
    Go to Solution.

    I got mine working, what I did was backed up my device, then reloaded my os back on to the phone and just restore the contacts and emails. Hopefully when you download what's app again don't go to bb app world go www.whatsapp.com/ota and it should work let me no if it worked for you

  • Please help my photoshop liquify not at all

    Liquifly do not work

    Please read this (in particular the section titled "Supply pertinent information for quicker answers"):
    http://forums.adobe.com/docs/DOC-2325
    Then you may want to try some of these (restoring Preferences after making sure all customized presets like Actions, Patterns, Brushes etc. have been saved might be of special interest):
    http://blogs.adobe.com/crawlspace/2012/07/photoshop-basic-troubleshooting-steps-to-fix-mos t-issues.html

  • I have a gen3 iPod touch.  It shows the battery charging when I plug into my PC, but will not show as an extra drive in "my computer" and won't show up in iTunes either.  Can anyone help please?  I have exhausted all "help" options.

    I am trying to get my iPod touch (3rd gen), to show up in "My Computer" and in iTunes.  I am using a usb cable and it is connecting okay, because the battery is charging.  It won't show up as an external drive on my computer, and nothing in iTunes either.  I have used the exact same usb cable and plugged into the exact same usb port with a different iPod touch without having this problem.  I have swapped them back and forth and it seems to be a problem with this particular iPod, because the other shows up just fine.  I have already downloaded and installed the latest iTunes update, and I already restarted the computer afterwards.  The other iPod is a 4th gen touch, but that really shouldn't matter.  I would greatly appreciate anyone's help on this matter.  I know that I can't be the first person that this has happened to.  Thanks.

    Dude you have a jailbroken phone as stated in your first post, no need to do a second post.
    As per the forum term of service you can't get help here.  Use google.
    that's the downfall of jailbreaking your phone.

  • Help Please - X200 will not boot after Bios Upgrade - keeps asking for power on password

    Hi there,
    I am new to this forum and please let me say a big Thank You for your help in advance.
    I am using a lenovo thinkpad x200 running windows vista with service pack 1. 
    The laptop has always been running fine and has never given me any issues. Unfortunately, all this came to an end yesterday when I ran the system assistant which did a round of updates and it prompted me to reflash my bios. 
    I did what was instructed and closed all open applications and after the laptop restarted, there was a noise from the harddisk (the sound was basically like what happens if the harddisk suddenly loses power). Then, all i got was a black screen, no harddisk acitvity with only the power cable LED and another LED (with the shape of a N tiled at 20 degrees) on. 
    I searched the forum and did what was suggested in this entry: http://forum.lenovo.com/t5/X-Series-ThinkPad-Laptops/Blank-screen-after-Bios-Upgrade-on-X200/ta-p/29... 
    This is what I did so far"
    I turned off the power, took out the backup battery and waited for about 30 minutes (repeated this step several times, also removing the harddisk) but to no avail.
    I removed the RAM and tried booting and there was that characteristic beeping sound. 
    I replaced the RAM, redid the CMOS clearing, and now there is the Lenovo startup screen. However, there would be an error code 0271 (no date time) and 0251 (something about default configuration). Then, these disappear and all I am left with is the Bios Power On password prompt. Somehow no matter what I type nothing can be input into the field (and I did not create any password as far as I can remember).
    I redid the clearing for the power on password by removing the backup battery as suggested at the bottom of this page http://support.lenovo.com/en_US/detail.page?LegacyDocID=migr-59377   but it is no use. Each time I restart, even if I press the blue Think Vantage button or F1 or F11, I still get the same 0271 and 0251 error messages and am left with the power on password prompt. 
    I am really desperate as I really like my lenovo x200 and there is important data on the laptop. I would appreciate any suggestions on how I can solve this. Its amazing how a simple update can turn into such a disaster. Now i know i should never upgrade or update my Bios (or at least proceed with extreme caution).
    Anyone can provide some help to get my laptop workin again?
    Thank you very much,
    Mark

    try reflashing your bios?
    http://support.lenovo.com/en_US/downloads/detail.page?&LegacyDocID=MIGR-70348
    Regards,
    Jin Li
    May this year, be the year of 'DO'!
    I am a volunteer, and not a paid staff of Lenovo or Microsoft

  • HELP Please! How do I Filter to only show Unque Records based on a Field?

    Post Author: MCourtney
    CA Forum: WebIntelligence Reporting
    Hello,I am using BOXI R2.  I know there has got to be a simple way to do this but I cannot figure this out.  Problem:I have a Query that returns some Purchase Orders...The way the data is, I have purchase orders that have the same value/ID (duplicates) but I only want to show the unique or distinct record...(i.e. the first record that comes back from the query) - So, for example if I had two PO Numbers in the result set, how would I only have the result show the Distinct value, or the first record and not the second.  If I could get access to the SQL, it would be easy as I would simply apply the DISTINCT function to the statement but I can't, so how would I do this without access to SQL?!?! Please help! Thanks everyone, Mark

    Post Author: jsanzone
    CA Forum: WebIntelligence Reporting
    Mark,
    Not knowing the full details of your report requirements and its data, here is one suggestion.  If you can avoid using any type of metric or measures from the initial build of your query (you know, where you drag items from the universe into your "Results Objects" pane), and then when you run the report BO will place a "distinct" on the select clause of the resultant SQL.  If you do need to do some summarizing (like count this or count that), you may be able to apply a local variable to your report to achieve versus pulling it in from your initial query.  Again, not knowing the full details of your report, so this technique of avoiding the use of any metrics or measure may not be an option for you, and thus, I too would be stumped.

Maybe you are looking for