Script error when Auto refresh the Dashboard

Hi,
I am getting error in below mentioned script when i enter in edit dashboard
message expected :';'
line 213
char 31
code 0
<script>
<!--
var sec="180" // Seconds
function refpage(){
if (sec==0)
HereLink('','RefreshAll');
else {
window.status="Refreshing in "sec--" seconds"
setTimeout("refpage()",1000)
window.onload=refpage
//-->
</script>

There are quite a few things wrong with your script...
For starters do not set the onload event of the window object like that in OBIEE as it is already in use and will clash. You can use onload but must handle the existing functions that are already using it.
var sec="180"This is a string not a number. Besides, at no point do you attempt to decrease the value of 'sec' so the 'if' branch of your if/else condition will never fire.
You can achieve much the same result without javascript by using a meta tag:
<meta http-equiv="refresh" content="60" />
You won't get the fancy timer in the status bar but the page will reload after 60 seconds.
Paul

Similar Messages

  • Smartview error when submitting/refreshing: "The cell or chart that you are trying to change is protected"

    Hello! Users are trying to submit data within a form, but they get the following error message:
    <<The cell or chart that you are trying to change is protected and therefore read-only. To modify a protected cell or chart, first remove protection using the Unprotectect Sheet command (Review tab, changes group). You may be prompted for a password.>>
    They get the same error when they try to refresh the form.
    The form is part of a task-list, but is not supposed to be protected. Actually they open the form from an empty excel workbook, so I don't understand what's the difference with other forms, where they don't have this message.
    Do you have an idea of what is triggering it?

    Users were in Smartview 11.1.2.1. The issue described above has been identifed as a software defect an it has been logged as bug 16017903 by Oracle. To solve this issue download and install Patch 16238382, or alternatively unistall Smartview and install version 11.1.2.2.310.

  • ADF 10.1.3 : getting error while auto refreshing the read only table

    Hi All,
    I have implemented auto refresh on ADF read only table +[auto refresh simply requeries table rows]+ but after say about 15 -20 refreshes, i start getting the warning:
    bq. "*Feb 10, 2009 3:21:17 PM oracle.adf.controller.faces.lifecycle.FacesPageLifecycle addMessage* \\ *     WARNING: JBO-35007: Row currency has changed since the user interface was rendered. The expected row key was oracle.jbo.Key*[ |http://forums.oracle.com/forums/]"
    and all the rows in the table disappear.
    I searched on Google and found that this error can be removed by disabling token validation in the page. But i have following queries:
    1. In my auto refresh code, i have added following lines to avoid this error but i am still getting the error, what could be the reason for this.
    bq. *" current_row_key = dciter.getCurrentRow().getKey();* \\ *     dciter.executeQuery();* \\ *     dciter.setCurrentRowWithKey(current_row_key.toStringFormat(true));"*
    2. Can disabling validation on my page lead to any issues?
    Regards
    Lokesh

    Any inputs on this ..

  • Java script error  when click on the  Tableview  in the BSp screen

    Hi All,
              I am getting a javascript error saying
    Line : 7770
    Char :5
    Error : 'rows' is null  or not an object
    Code : 0
    URL : http://saperpdev01............
    I checked the source code on the BSP displayed page. It don't has that line 7770 specified in the error.
    My Layout code is :
    <%@page language="abap"%>
    <%@extension name="htmlb" prefix="htmlb"%>
    <htmlb:content design="design2003">
      <htmlb:page title = "Open Work Screen with Pre Approval and Rejected Invoices ">
        <htmlb:form id = "openwork" method = "post" >
    <%
      data: l_num_msgs  type i,
      l_condition type string,
      l_message   type string,
      l_severity  type i.
    %>
        <img align="left" src="hl_invoicing.gif"/>
          <BR>
          <p align="left">      </p>
          <p align="left">      Complete the form below to create and submit a vehicle repair invoice to Schwans Home Service.</p>
          <p align="left">      See
          <htmlb:link id            = "paymenttermslink"
                      text          = "Payment Terms"
                      onClientClick = "return parent.EPCM.doNavigate ('ROLES://portal_content/com.schwans.tsfc.The_Schwans_Food_Company/HS/iView_folder/External_Content/KM_iViews/Fleet_Payment_Terms', 1);"
                           />
          for payment details.</p>
          <%
              l_num_msgs = page->messages->num_messages( ).
              do l_num_msgs times.
              clear : l_message, l_condition, l_severity.
              call method page->messages->Get_message
              exporting index     = sy-index
              importing condition = l_condition
              message   = l_message
              severity  = l_severity.
              if l_condition eq 'error'.
          %>
          <h3 align="left"> <font size=2 color="Red"><b>      <%= l_message %></b></font></h3>
          <%
              elseif l_condition eq 'warning'.
          %>
          <h3 align="left"> <font size=2 color="orange"><b>      <%= l_message %></b></font></h3>
          <%
              endif.
              enddo.
          %>
          <htmlb:group id     = "groupone"
                       design = "sapcolor" >
         <htmlb:groupHeader>
            <table width="100%" border="0" cellpadding="5" cellspacing="1" >
                <tr>
                    <td align="left" width="100%">
                      <!--<b> Invoicing </b> -->
                      <htmlb:textView id      = "tv1"
                                      text    = "Select a  Work Order Number"
                                      design  = "HEADER1" / >
                    </td>
                </tr>
            </table>
        </htmlb:groupHeader>
        <htmlb:groupBody>
        <table width="100%" border="0" cellpadding="5" cellspacing="1" >
                <tr>
                    <td align="left" width="100%">
                      <!--<b> Invoicing </b> -->
                      <htmlb:textView id      = "tv2"
                                      text    = "Pre-approved work"
                                      design  = "HEADER2" / >
                    </td>
                </tr>
            </table>
        <table width = "100%">
          <tr>
          <td>
          <htmlb:tableView id               = "openwork"
                           table            = "<%= INVOICE->AT_OPENWORK %>"
                           design           = "STANDARD"
                           width            = "100%"
                           selectionMode    = "SINGLESELECT"
                           selectedRowIndex = "<%= INVOICE->A_OPENWORKSELECTION %>"
                           visibleRowCount  = "10"
                           footerVisible    = "TRUE"
                           emptyTableText   = "No Open Work Exists"
                           keyColumn        = "OPENWORKNO"
                           onRowSelection   = "openworktable" >
            <htmlb:tableViewColumns>
              <table width = "100%">
              <tr>
              <td >
              <htmlb:tableViewColumn columnName = "OPENWORKNO"
                                     title      = "Reference Number"
                                     width      = "20%"
                                     horizontalAlignment = "LEFT" >
              </htmlb:tableViewColumn>
              </td>
              <td >
              <htmlb:tableViewColumn columnName = "DOC_TYPE_TEXT"
                                     title      = "Document Type"
                                     width      = "20%"
                                     horizontalAlignment = "LEFT" >
              </htmlb:tableViewColumn>
              </td>
              <td >
              <htmlb:tableViewColumn columnName = "CREATEDDATE"
                                     title      = "Created On"
                                     width      = "20%"
                                     horizontalAlignment = "LEFT" >
              </htmlb:tableViewColumn>
              </td>
              <td >
              <htmlb:tableViewColumn columnName = "FLEETNO"
                                     title      = "Fleet Number"
                                     width      = "20%"
                                     horizontalAlignment = "LEFT" >
              </htmlb:tableViewColumn>
              </td>
              <td >
              <htmlb:tableViewColumn columnName = "VMRS_TEXT"
                                     title      = "VMRS Code"
                                     width      = "20%"
                                     horizontalAlignment = "LEFT" >
              </htmlb:tableViewColumn>
              </td>
              </tr>
              </table>
            </htmlb:tableViewColumns>
          </htmlb:tableView>
          </td>
          </tr>
          </table>
        </htmlb:groupBody>
        </htmlb:group>
        <htmlb:group id     = "grouptwo"
                       design = "sapcolor" >
         <htmlb:groupHeader>
         </htmlb:groupHeader>
        <htmlb:groupBody>
             <table width="100%" border="0" cellpadding="0" cellspacing="0" >
                <tr>
                    <td align="left" width="100%">
                      <!--<b> Invoicing </b> -->
                      <htmlb:textView id      = "tv3"
                                      text    = "Rejected Invoices"
                                      design  = "HEADER2" / >
                    </td>
                </tr>
            </table>
          <table width = "100%">
          <tr>
          <td>
          <htmlb:tableView id               = "rejectedinvoice"
                           table            = "<%= INVOICE->AT_REJECTED_INVOICES %>"
                           design           = "STANDARD"
                           width            = "100%"
                           selectionMode    = "SINGLESELECT"
                           selectedRowIndex = "<%= INVOICE->A_REJECTEDINVOICESELECTION %>"
                           visibleRowCount  = "10"
                           footerVisible    = "TRUE"
                           emptyTableText   = "No Rejected invoices Exists"
                           keyColumn        = "INVOICENO"
                           onRowSelection   = "rejectedinvoicetable" >
            <htmlb:tableViewColumns>
              <table width = "100%">
              <tr>
              <td >
              <htmlb:tableViewColumn columnName         = "VENDOR_INVOICE_NUMBER"
                                     title              = "Reference Number"
                                     width      = "30%"
                                     horizontalAlignment = "LEFT" >
              </htmlb:tableViewColumn>
              </td>
              <td >
              <htmlb:tableViewColumn columnName = "CREATEDDATE"
                                     title      = "Invoice Date"
                                     width      = "20%"
                                     horizontalAlignment = "LEFT" >
              </htmlb:tableViewColumn>
              </td>
              <td >
              <htmlb:tableViewColumn columnName = "FLEETNO"
                                     title      = "Fleet Number"
                                     width      = "20%"
                                     horizontalAlignment = "LEFT" >
              </htmlb:tableViewColumn>
              </td>
              <td >
              <htmlb:tableViewColumn columnName = "REJECTION_REASON"
                                     title      = "Reason for Rejection"
                                     width      = "30%"
                                     horizontalAlignment = "LEFT" >
              </htmlb:tableViewColumn>
              </td>
              </tr>
              </table>
            </htmlb:tableViewColumns>
          </htmlb:tableView>
          </td>
          </tr>
          </table>
      </htmlb:groupBody>
    </htmlb:group>
    <htmlb:textView id     = "tv1"
                    text   = "Select a Reference Number from the table above and click the Select button - or - Click the Create New button to create a new invoice."
                    design = "LABEL" />
         <table width="100%" border="0" cellspacing="1"  align="center" >
           <tr>
           <td  align="center" nowrap="TRUE">          
             <htmlb:button    id            = "selectbtn"
                              text          = "SELECT"
                              onClick       = "btnselect" />
             <htmlb:button    id            = "createnewbtn"
                              text          = "Create New"
                              onClick       = "btncreatenew" />
             </td>
           </tr>
          </table>
        </htmlb:form>
        <%@include file="footer.htm" %>
      </htmlb:page>
    </htmlb:content>
    What may be wrong????
    If I click anywhere on the table view it's giving a javascript error. If I try to select a row from the table also it's giving error for one or two times and on the third time i am able to select the table content and can able to navigate to the next page.
    Thanks for your help in advance.
    Thanks,
    Greetson

    Hi Raja,
         please kindly recheck the code if mine i have two tables ..... one for heading and another one for Body.
    it looks correct to me.
    <table width = "100%">
    >     <tr>
    >     <td>
          <htmlb:tableView id               = "rejectedinvoice"
                           table            = "<%= INVOICE->AT_REJECTED_INVOICES %>"
                           design           = "STANDARD"
                           width            = "100%"
                           selectionMode    = "SINGLESELECT"
                           selectedRowIndex = "<%= INVOICE->A_REJECTEDINVOICESELECTION %>"
                           visibleRowCount  = "10"
                           footerVisible    = "TRUE"
                           emptyTableText   = "No Rejected invoices Exists"
                           keyColumn        = "INVOICENO"
                           onRowSelection   = "rejectedinvoicetable" >
            <htmlb:tableViewColumns>
              <table width = "100%">
              <tr>
              <td >
              <htmlb:tableViewColumn columnName         = "VENDOR_INVOICE_NUMBER"
                                     title              = "Reference Number"
                                     width      = "30%"
                                     horizontalAlignment = "LEFT" >
              </htmlb:tableViewColumn>
              </td>
              <td >
              <htmlb:tableViewColumn columnName = "CREATEDDATE"
                                     title      = "Invoice Date"
                                     width      = "20%"
                                     horizontalAlignment = "LEFT" >
              </htmlb:tableViewColumn>
              </td>
              <td >
              <htmlb:tableViewColumn columnName = "FLEETNO"
                                     title      = "Fleet Number"
                                     width      = "20%"
                                     horizontalAlignment = "LEFT" >
              </htmlb:tableViewColumn>
              </td>
              <td >
              <htmlb:tableViewColumn columnName = "REJECTION_REASON"
                                     title      = "Reason for Rejection"
                                     width      = "30%"
                                     horizontalAlignment = "LEFT" >
              </htmlb:tableViewColumn>
              </td>
              </tr>
              </table>
            </htmlb:tableViewColumns>
          </htmlb:tableView>
    >     </td>
    >    </tr>
          </table>

  • How to stop the auto refresh in dashboard

    i have a BIP Report, i have unchecked the "Auton Run" option in the report properties of BIP reports and uploaded the report to My Dashboard,
    when i login into the answers or when i refresh the dashboard page, my BIP Report is executing automatically even though it is uncheck in its report properties and generating the "page not found error"... can any one help me, how can i control the BIP report not to execute it until when we click on click export button....

    virajx3006 wrote:
    Hey guys,
    Anyone know how to stop the auto updater in N900 application manager ?
    Coz when i connect via wifi or 3G, it always try to search for updates...Coz of that i cant search the web properly until its over.
    Specially when i connect via GPRS, i have to pay more for this extra mega bites use from app manager...
    So got any ideas for this prob...?
    (I usually use faster app manager to install apps.)
    dude check your inbox
    Reality is wrong....dreams are for real... 2pac .
    don't forget to hit that green kudos

  • Script Errors when submitting the Page

    We are using iPlanet 4.1 as WebServer under SSL mode. The customers who are working under Windows XP with IE6.0(128bit) browsers are having Script Error problem, while submitting the data to the WebServer. Though the number of customers affected are less when comparing to the people who can access without problem, the script error problem is becoming to damage the image of our application. FYI, customer is working with BroadBand Internet Connections with the Local ISP.
    Kindly advise.

    First, due to security problems discovered in earlier versions, you should upgrade to iPlanet Web Server 4.1 SP11 or Sun ONE Web Server 6.0 SP4.
    That said, it sounds like you're encountering known SSL bugs present in Microsoft Internet Explorer. The release notes for current Sun ONE Web Server releases cover this topic. You can view the relevant section of the 6.0 SP4 release notes at http://docs.sun.com/source/816-6371-10/index.html#1007147

  • I keep getting script errors when accessing Amazon Seller merchant pages. I get the following A script on this page may be busy, or it may have stopped responding. You can stop the script now, or you can continue to see if the script will complete. Script

    I keep getting script errors when accessing Amazon Seller merchant pages. I get the following A script on this page may be busy, or it may have stopped responding. You can stop the script now, or you can continue to see if the script will complete. Script: chrome://spautofill/content/spOverlay.js:150, I also get js210 as well. I have cleared all cookies and history and unistalled Firefaox and reinstalled. Been thru my AVS and set the site as trusted in every possible place. Still get the problem. Do not get it with IE on same PC.
    == URL of affected sites ==
    https://sellercentral.amazon.co.uk

    Same problem but with a different vendor site:
    https://www.webvitamins.com/myfavorites.aspx
    Not only does the page hang, but the other tabs also hang.
    I contacted the vendor and their reply was "we were told that this looks like a script that is used by "Sticky Password", third-party software that must have been installed on your browser. However, our website did not install it and does not have anything to do with it." As far as I can tell, "Sticky Password" is not installed on my Firefox.
    Same problem as above occurs, but with IE 8.0.6001.18702. Therefore, it is not unique to Firefox.
    CAUSE DETERMINED: Have determined that this problem only occurs when Kaspersky Password Manager is installed. In Firefox, if the "Password Manager Autofill Engine" add-on is disabled, the problem goes away.

  • Still having a problem with Firefox going to "restart a session" even after re-installing Firefox. Keeps giving me "script error" when closing down. How do I fix this?

    As stated previously...I have removed and re-installed Firefox, but am still getting "script error" when shutting it down and going to "restore session" when opening. Please advise what to do about this problem. Thank you.

    Firefox 21 and Firefox 22 running on Windows 7 have been reported to take a long time to "wake up" from sleep. I realize hibernation is different than sleep, but... this is the closest match for your description.
    Some users have reported that this problem is resolved in Firefox 23 (currently in beta). Others have had inconsistent luck with minimizing Firefox before letting Windows sleep and other measures.
    Please check out this (very long) thread for more information: [https://support.mozilla.org/questions/961898 browser freezes after resuming from sleep]
    Or jump to the part about Firefox 23: https://support.mozilla.org/questions/961898?page=3#answer-457321
    The fact that this just started recently suggests perhaps it is related to another program or update, but I don't think anyone has confirmed the exact interaction that causes the problem.

  • How can I make the spry accordion remember the panel open when I refresh the page or jump to a new page?

    How can I make the spry accordion remember the panel open
    when I refresh the page or jump to a new page?
    I am using the accordion feature on all my pages as a
    navigation aid. It has three panels. When you refresh the page the
    panel goes back to the default pane... Is there a way of
    controlling this so that the browser can remember the pane that is
    open (say set a variable, cookie, other?)

    Look for "Set the default open panel" on the following page:
    http://labs.adobe.com/technologies/spry/articles/accordion_overview/index.html
    Keep in mind you would need to change that bit of code on
    every page. The only way to do it more dynamically would be to
    include a custom javascript or PHP/ASP style script in order to
    change the value.

  • Scripting error when opening Interactive Form

    Hi all,
    I'm experimenting with adobe interactive forms (in web dynpro), but things aren't going as expected. I'm getting scripting errors when clicking (in Internet Explorer) on a link that opens a view with an interactive form. Please see below for details.
    I've found a similar error description /thread/80059 [original link is broken], but the context is different. It seems to be related to namespaces, but I have no idea what I'm doing wrong.
    Any help is greatly appreciated!
    line 59: 'sapUrDomainRelaxing' is undefined
    line 109: Object expected
    line 113: Object expected
    line 137: 'SSR' is undefined
    line59
    ur_system = {<<SNIP>>, domainrelaxing: sapUrDomainRelaxing.MINIMAL, <<SNIP>>};
    line 109
    sapUrMapi_init();
    line 113
    sapUrMapi_Focus_RegisterCreate('');
    if( SSR && SSR.windowManager) SSR.windowManager.hideEventBlocker();
    sapUrMapi_initLinkStatus();
    line 137
    if (SSR.showInfo){ <<SNIP>> }

    Hello Jeroen and welcome to the SDN!
    It seems like an error in the WebDynpro-part, not in the Adobe forms-part. Please check if all your elements (views, windows, controllers, etc.) are in valid namespaces.
    Could you try to create an application for the WebDynpro-project in the NDS, and try to <i>deploy new archive and run </i>? Does this work?
    Perhaps you could even copy the project, and replace the Adobe Inter Form element by a static text, to test if it is in the WebDynpro part or that it really has something to do with the Adobe.
    Good luck,
    Jan-Willem Kaagman

  • Script Error when starting Crystal Application

    Post Author: jhartney
    CA Forum: General
    Anybody seen this?  Just started when opening any report, been working fine for over a week and now this error.  Does not seem to harm anything, the reports still regenerate just fine.  Only happens when starting the CR application.  CR Developer 11.0.0.1282
    Pop-up is as follows
    Script ErrorLine 481Position 41     if g3() = True then main = True : Exit Fun
    JON

    Post Author: Gym122
    CA Forum: General
    3 or more folks here have had the same issue.....more than once.  We got the original script error, it quit in the afternoon, and now has reappeared. (fails at a different line in the script though)  
    Someone posted a fix, though.  Just uncheck 'Help', 'Check for updates on startup'   Worked for us.   Good catch...whoever that was! 

  • Script Error when I Publish Movie

    I am getting a script error when i Publish a Movie.But when
    run the movie i dont get any error.
    I get the error message window as follows
    Symbol expected
    <Void>
    Script Error. Continue?
    and the options "YES" and "NO"
    What could be the possible reason for this.
    I have draged a combo behaviour onto a bitmap.I think there
    is something wrong in that behaviour as it conatins many functions.
    Please highlight on this issue as it is really very urgent
    for me.
    Thanks

    Hi Ajeet,
    You've left out an xtra. It's impossible to tell which one
    from your
    description. I'll guess that its a scripting xtra, possibly a
    third
    party xtra.
    Rob
    Rob Dillon
    Adobe Community Expert
    http://www.ddg-designs.com
    412-243-9119
    http://www.macromedia.com/software/trial/

  • Script error when trying to delete group items

    Hello,
    I have the following part of my javascript:
    //loop to remove logos
    for (i=0; i<logoKeys.length; i++) {
    if (logosArray[logoKeys[i]] == false) changeLayer.groupItems.getByName(logoKeys[i]).remove();
    And I get the following error when any of the values are set to false:
    Line 64: if (logosArray[logoKeys[i]] == false) changeLayer.groupItems.getByName(logoKeys[i]).remove();
    an Illustrator error occurred: 1128353364 ('CANT')
    The script works fine when none of the values in logosArray are false, so it must be the part
    changeLayer.groupItems.getByName(logoKeys[i]).remove();
    that is giving me problems.
    I declare the values like this:
    var values = new Array();
    ..some declarations in here for first part of the array...
    values[6]=false;
    values[7]=true;
    values[8]=false;
    values[8]=false;
    values[10]=false;
    then later populate the logosArray:
    for (i=0; i<logoKeys.length; i++) {
    logosArray[logoKeys[i]] = values[offset];
    offset++;
    The interesting thing is if I change the population of logosArray to set all values implicitly to false, it also works fine:
    ie.
    for (i=0; i<logoKeys.length; i++) {
    logosArray[logoKeys[i]] = false;
    offset++;
    So it doesn't seem to like taking the values for logosArray from my values[] array. Any idea why? Any help is greatly appreciated. Thanks.

    Update:
    When I implicitly set the values of logosArray to "false" it only works every OTHER time I run the script. Is there any kind of cache or local memory dump I have to do on illustrator between running scripts?

  • Unresponsive Script Error when Saving Changed Set in Flickr Organizer

    I'm getting an unresponsive script error when saving a changed set in the Flickr organizer.
    The problem started when using Firefox 3.6.8 or maybe an earlier version. It persists in Firefox 3.6.12
    I've noticed the error only appears in the Organizer and only when saving a changed set or saving after deleting a set.
    It does indeed save the changed set correctly before crashing.
    It is not intermittent and happens every time I perform this save.
    The error does not occur in Chrome or Safari.
    Examples of the error messages can be found at
    http://www.flickr.com/photos/blazer8696/4897580573/
    and
    http://www.flickr.com/photos/blazer8696/4897656175/

    Upgrading to 4.0.1 has corrected this problem.

  • Safari 6.1 freezes and then can't connect to the server when I refresh the page

    Hi everyone.
    I have a Mid 2010 13" Macbook. It is running the following..
    Processor: 2.4 GHz Intel Core 2 Duo
    Memory: 4GB 1067 MHz DDR3
    Graphics NVIDIA GeForce 320M 256 MB
    Software OS X 10.8.5 (12F45)
    Hard Drive: 320GB
    Recently Safari has been acting up. Everything will be working fine but then it will freeze and when I switch to another tab that tab will be white, as will all other tabs when I switch to them. When I refresh the page it force refreshes all other pages but on a lot of the pages (Facebook, Twitter, google, Gmail, mostly things with a password I think) it says that it can't make a secure connection to the server. I tried switching to Chrome and the same thing happened and then I switched to the Guest User and the same thing happened.
    It has also been telling me that I have no more space on the startup disk but I'm not sure how that can be the case. I currently have 272GB free of a 319GB hard drive so I'm not sure what the problem is here! When I restart the mac everything is fine again but I have noticed it is taking longer for the mac to start up now. I have repaired disk permissions, I have reset Safari and cleared the history. I have downloaded OmniDiskSweeper and it has told me that the highest usage is in Spotify caches and my Gmail folder. So I deleted the Spotify caches and deleted all my emails. I then tried to delete the mail folder in Finder but when I do it just builds itself back up again.
    When I used Disk Utility to verify the disk it found no issues.
    I tried to shut down and restart it to run the hardware test but it doesn't boot up, it just takes a lot longer to reach the log in screen.
    I don't know what else to try! Any help would be welcomed.

    Try this DNS server ..
    Open System Preferences > Network > Advanced > DNS
    Click + and type:
    208.67.222.222
    Click + again and do the same.
    208.67.220.220
    Click OK.
    Quit and relaunch Safari to test.

Maybe you are looking for

  • How can i make my communities and email work on my...

    everytime i try to get online at communities, it always says that communication error?.. what can i do to make it work??.. and also the email..

  • PAT on MSI875P

    Hi all Does running other ratio than 1:1, will PAT be enable? I am using both Sandra 2003 MAX3 and CPUz 1.18c. This is what I have seen. 1:1 slow/fast mode - both show disable 1:1 turbo/ultra mode - both show enable 5:4 any mode - both show disable 3

  • Having problem running Lightroom 5 with my MacBook Pro

    A salesperson from Bestbuy told me if I get a macbook Pro 13" with 2.5Ghz i5 and 4 GB RAM, I would be able to use Lightroom 5. I used the trial version, but it was slow on my Mac. Does that mean I need to upgrade my RAM?

  • Lightroom vs Elements 7

    I just was given a copy of Lightroom 2. I have ben using PSE 7 for some time now. I shoot RAW and convert to .tif for saving and printing. Although the majority of my work is b&w [ see my website, russdupontphotos.com ], I also do some color work. Fo

  • Upgrade data base from sql server 2005 to sql server2008

    Hi guys, What is the best way for upgrade my SQL Server 2005 data base to SQL 2008?