Info view not recognizing correct processor family

pc wizard 2004 recognizes my processor as a Thoroughbred core but info view recognizes it as a duron processor.  whats the problem here? could it be the bios or something?
thanks for any help
K7N2GM-L
Athlon XP 2000+ @ 1.67
need anything else?

how old is info view?
some old programs says a cpu is duron if it cant recognize it.

Similar Messages

  • Guest variable 'guest info.return_code' not configured correctly.

    Hi,
    I'm converting a SQL Server 2012 from Base DBVM to Base DB Template. After a while working on the conversion I get this error:
    "Guest variable 'guest info.return_code' not configured correctly."
    If I double-click the error I get the following message: "Cannot get detail information for the specified resource bundle."
    I'd really appreciate if anyone can help with the issue.
    Regards
    Fernando

    carlasummers wrote:
    ...Error: variable hourlyRate might not have been inialized and variable hoursWorked might not have been inialized. ....Haven't read your code, but whenever I see an error like this, I find that usually correcting what it tells me to correct helps: initialize the variables.
    i.e.,:
        double hoursWorked = 0.0;
        double hourlyRate = 0.0;
        double weeklyPay = 0.0;also: never use float when you can use double (there are exceptions but they are few).
    also: You need to get the employee name within the loop. Also it would help to add the prompt: "enter \"stop\" to quit" or something of that nature. Assume that the users of your program are idiots.
    Also, when posting code here, please use code tags so that your code will retain its formatting and thus will be readable -- after all, your goal is to get as many people to read your post and understand your code as possible, right?
    To do this, highlight your pasted code (please be sure that it is already formatted when you paste it into the forum; the code tags don't magically format unformatted code) and then press the code button, and your code will have tags.
    Another way to do this is to manually place the tags into your code by placing the tag [code] above your pasted code and the tag [code] below your pasted code like so:
    [code]
      // your code goes here
      // notice how the top and bottom tags are different
    [/code]Best of luck.
    Edited by: Encephalopathic on Apr 25, 2009 6:56 AM

  • Discoverer Viewer not showing correct data when scheduled

    Hi All,
    I have a bit of an ongoing issue and cannot find an answer through Oracle.
    We have an issue that when a cross-tab workbook is run manually in Desktop this returns correct data, when scheduled in desktop it returns correct data in desktop, but when opening the scheduled workbook in viewer, incorrect and irrelevant data is returned
    Here is a little information on the field that is not returning correct data;
    The field is based on a calculation, the calculation (lets call BOB) contains PL/SQL function concatenated with an NVL calculation, this other calculation is a DECODE. I have been playing with changing the content of the BOB calculation, by removing the PL/SQL function and the DECODE calc from BOB and scheduling the report, the data is returned in viewer, in fact i've attempted one without the other and this still does not return the correct data.
    This version of discoverer that is not returning data is V 10.1.2.50.05. I've tested this on a later environment with Discoverer V 10.1.55.26 and the data is returning correctly through the sceduled report in viewer.
    My questions;
    1. Has anyone ever come across something similar to this in version 10.1.2.50.05
    2. Is there any detail available regarding what upgrading to 10.1.55.26 offers?
    3. Know any workaround for using PL/SQL calculations in a scheduled workbook? I am aware that not aggregable items will not be returned in v11 when scheduling workbooks.
    Many thanks in advance for any help.
    Simon

    Bumping this thread
    Thanks
    Si

  • Swing - Design View not shown correctly

    I am using swing Layout Managers to design a JFrame. The problem is that the design view does not show correctly how the components are laid out. But when I run the application, the components are placed properly as expected. Why can't then jdeveloper show the components properly in the design view.
    regards,
    nirvan.

    Just bouncing this one, in case it has eluded expericened eyes.

  • Adobe PDF Viewer not recognized by Mac Safari

    An internet-based program (LEED Online: https://www.leedonline.com/irj/go/km/docs/documents/usgbc/leed/config/common/login/browser AdobeReq.htm)  I run through Safari requires the Adobe PDF Viewer plugin to be installed. When I upgraded my Safari to 5.1.7 (which a program I used requires) the dobe Acrobat NPAPI Plug-in, Version 10.1.4 shows as installed, but the AdobePDFViewer.plugin is not recognized by Safari.
    I have tried re-installing Adobe XI to see if the PDFViewer.plugin installs, and it does not. When I revert back to Adobe 10.1.4 the same is true--no PDFViewer Plugin. I am using MacOSX 10.6.8 which is also required.
    I need the following:
    Mac 10.6.8
    Adobe 10.1.4 or XI
    Safari 5.1.7 (not negotiable for the program that I use through Safari)
    Please help, as this is work related!!
    Thank you!

    Hi Paulie1562,
    Please follow this KB article to fix this issue.
    http://helpx.adobe.com/creative-cloud/kb/aam-lists-removed-apps-date.html
    Please let us know if this helps.
    Regards,
    Abhijit

  • Processor not recognized correctly

    hi everyone. i hope you can help me..
    i just got done building a pc for the first time. its boots up fine. i have a Amd Athlon XP 2400+ that runs at 1.8 ghz. but my computer is saying it is a Athlon XP 1500+ and its running at that speed, 1.4ghz.
    i have a MSI Kt3 Ultra2 motherboard. i try upping the clock in the bios, but it crashes my system. please anyhelp to configure the MB right would be appreciated.
    email me or reply here.
    [email protected]

    Have you set the FSB to 133?  The BIOS defaults at 100, which will give you a slower reported speed for the cpu.  Bump it up to 133 and you should see your correct speed.

  • JSF Design Time View Not working correctly for ADF/JSF components

    My project is not using any external tag libraries. It is based purely on ADF core/html and JSF core/html components. The design time view does not show the appropriate presentation, everything is shown as nexted frame containers (I suppose how you would show a component that does not have a visual representation).
    If I create a new project and copy my jsp (jsf) pages over they show perfectly. I did this activity and all was going well in the new project and then I lost the design time view again. I cannot tell you what I did to cause the issue, maybe it was a modification to the web.xml as has been suggested in some other threads. Can anyone tell me what I should be looking for that causes this problem, what corrective actions I might take to eliminate the issues

    Ok I have isolated this issue. In my phase listener I had this line of code:
    private static final Logger _logger =  Logger.getLogger(EigRequest.class.getPackage().getName());
    and I changed it to
    private static final Logger _logger =
    Logger.getLogger(EigRequest.class.getName());
    and design mode started to work. I guess either of the above works for me although I do not understand why the line works when you run the application but not in design mode.
    Moral to the story is if something fails in any one of these types of decorators you will drop into a raw view mode. The question I have is if errors are occuring how do I figure out where they may be. There is no indication that anything is wrong with the exception that you lose most of the design mode functionality.
    This was not a compile issue, this was not a runtime issue. It took me quite a few hours of writing a test program to validate that it was not just writing a phase-listener issue; then launching, editing, relaunching the application to find the problem. I will say that a good portion of the code came from a Eclipse project. If you add the offending lines of code while using JDeveloper you do not loose design mode immediately. You only see the problem the next time you start JDeveloper which complicates finding the problem.

  • [Solved] calibre ebook-viewer not working correctly

    In the last few days the ebook-viewer packaged along with calibre has started behaving strangely by inserting gaps or spaces randomly all over books. Calibre itself and the other tools seem to be OK.
    EDIT: Screenshots
    Calibre's ebook-viewer: http://i.imgur.com/ypGBTlI.png
    Calibre's ebook-editor: http://i.imgur.com/WnPjFkx.png (Note - no spaces in the source files or rendering of the page)
    After looking around for a bit - I've discovered that the newest version of calibre switched from the regular releases (which on Arch stopped at version 1.40) to beta releases (Arch package version 1.204.1-2).
    It seems the official Arch package is now the beta of calibre.
    I've tried downgrading to previous version and the newset one that works is the 1.40 version.
    I would very much like to have the latest, official version of calibre rather than the old 1.40.
    Unfortunately calibre seems like a complex beast.
    I suspect the problem is with qt5-webkit (that I guess is what is rendering the book.)
    This must be a **new** dependency as I don't have a version installed before August 3rd when calibre was upgraded.
    $ grep -i qt5-calibre /var/log/pacman.log
    [2014-08-03 11:34] [PACMAN] upgraded calibre (1.40.0-1 -> 1.204.0-1)
    $ grep -i qt5-webkit /var/log/pacman.log
    [2014-08-03 11:34] [PACMAN] installed qt5-webkit (5.3.1-1)
    I don't have an older version - I only have qt5-webkit-5.3.1.
    Calibre dependencies
    chmlib
    icu
    imagemagick
    libmtp
    libusbx (libusb)
    libwmf
    podofo
    pyqt4-common
    python2-apsw
    python2-chardet
    python2-cherrypy
    python2-cssselect
    python2-cssutils
    python2-dateutil
    python2-dnspython
    python2-html5lib
    python2-lxml
    python2-mechanize
    python2-netifaces
    python2-pillow
    python2-psutil
    python2-pyqt5
    python2-six
    qt5-svg
    qt5-webkit
    shared-mime-info
    ipython2 (optional) - to use calibre-debug
    python2-pycountry (make)
    qt5-x11extras (make)
    There seems to be a strange mix of qt4 and qt5 here:
    pyqt4-common, python2-pyqt5, qt5-svg, qt5-webkit, qt5-x11extras
    What I would like is to have the latest version of calibre 1.47 and have it nicely integrated with Arch rather than just install it somewhere in my home directory and maintain it manually.
    Unfortunately I'm stumped and I have no idea how to do that.
    Is anyone else having problems with the beta calibre and its ebook-viewer?
    Can anyone offer some suggestions or help out?
    Last edited by bhrgunatha (2014-08-08 06:39:16)

    Scimmia wrote:
    Calibre 1.xx simply won't build with current versions of pyqt4. The official package had to either stay at 1.40 or jump to the 2.0 betas. The maintainer decided to package the betas.
    It's working perfectly here. I wonder if it's simply a font problem.
    I've tried changing fonts (both Serfi and Sans Serif) and sizes but it's the same for any font I choose at any size.
    Since 1.40 uses pyqt4 and calibre now won't work with that, then perhaps its a problem on my system with the mix of qt4 and qt5.
    Maybe I'm missing some vital qt5 library?
    $ pacman -Qs qt5
    local/attica-qt5 5.0.0-1 (kf5)
    local/libdbusmenu-qt5 0.9.3+14.10.20140619-1
    local/phonon-qt5 4.7.2-1
    local/phonon-qt5-gstreamer 4.7.2-1
    local/polkit-qt5 0.112-1
    local/pyqt5-common 5.3.1-1
    local/python2-pyqt5 5.3.1-1
    local/qt5-base 5.3.1-1 (qt qt5)
    local/qt5-declarative 5.3.1-1 (qt qt5)
    local/qt5-location 5.3.1-1 (qt qt5)
    local/qt5-quickcontrols 5.3.1-1 (qt qt5)
    local/qt5-script 5.3.1-1 (qt qt5)
    local/qt5-sensors 5.3.1-1 (qt qt5)
    local/qt5-svg 5.3.1-1 (qt qt5)
    local/qt5-webkit 5.3.1-1 (qt qt5)
    local/qt5-x11extras 5.3.1-1 (qt qt5)
    local/qt5-xmlpatterns 5.3.1-1 (qt qt5)
    Last edited by bhrgunatha (2014-08-07 02:41:28)

  • I-pod loads but not recognized correctly

    My Ipod set-up fine on my home computer but at work it is not properly recognized. When I plug it in, in pulls up in I-tunes as "Single Disk" not the name I gave it. And all my music is listed as "other" data, not as music. How do I get it to read my music and properly recognize my I-pod?
    Nano-2G   Windows XP  

    Your iTunes may not be the correct version on your work computer or you may need to re-install it. Since it works fine on your home computer it is unlikely that it's the iPod.

  • InDesign CS6 plug-in not recognized correctly by InDesign

    I have been trying to create a simple InDesign CS6 plug-in that writes to a log file as I'm opening & closing InDesign documents. SDK package had the LinkWatcher sample that I've been using as a reference when creating my solution.
    Currently the problem is that I'm getting a "Adobe InDesign does not recognize mfindesign.pln as a valid plug-in" when I try to start up InDesign CS6 with the plugin. That isn't too helpful as it doesn't let me know where the problem is and compiling the code with VS2010 gives me no errors currently.
    Relevant parts of the code can be found from https://github.com/crnd/MFIndesign/. I've been using CResponder as a base class in my implementation.
    Anyone have any good pointers where & how to start looking for the problem? Or even better if someone can already spot the mistake(s) I've made...

    This is a typical problem to solve, based on my individual experience on this issue i would recommend the following check points.
    Check that your plugin is linking to correct version of libraries.
    Check you are using the correct version of SDK
    Look for the odfrc command line and see that correct flags are being sent as argument to it. Also that the correct version of odfrc is being used to compile the resources
    If possible use the debug version of InDesign, it may give you more detailed error prompt. Like if the plugin you are trying to load is a release version, or the resources are missing.
    See if the resources are actually compiled and the resulting folder is placed parallel to your .pln file, like very truly mentioned by Bartek. Pay attention to what the name of this folder should be.
    Also makes sure that these resource folders are not empty.
    Hope one of these steps does the trick for you.
    -Manan

  • Draft View Not Displaying Correctly

    We have recently redesigned a website that is using Contribute which appears correctly on the live domain. However, whenever you try to edit a page within Contribute, the draft view doesn't show the new images or CSS.
    Does anyone know why this could be? I have had a browse through the forum, but we can't seem to find a solution to fix our problem.

    This might happen, if the CSS and images included in the page are coming from different domain, where Contribute doesn't have access to download.
    Can you please share the URL if the page?

  • My monitor is not recognized correctly before I'm logged in.

    I have a Dell U24H14 monitor. Connected with a Mini DP to DP port cable.
    In preferences I've set the monitors to extends. Not duplicate. This is al working just fine.
    BUT:
    When I boot my MacBook, with the monitor connected, half way during the boot process, when the monitor is being recognized by OS X, it goes to the standard setting, which is duplicate the screens.
    I've tried with other monitors, but they all are on extend at the login screen after boot.
    I think that somehow the settings(extend) of the monitor are not loaded before I login. Or the settings only apply to my user account and not to the root user.
    I've tried:
    - Reset NVRAM
    - Reset SMC
    - Factory reset Dell Screen
    I have to try with HDMI, maby that works, but I do NOT want to use HDMI.
    How can I fix this? I really love the screen but it is getting annoying when I boot.
    Any help is very appreciated.

    You should set the Unattended Execution Account if you don't want to set credentials for data sources.
    Kind regards,
    Margriet Bruggeman
    Lois & Clark IT Services
    web site: http://www.loisandclark.eu
    blog: http://www.sharepointdragons.com

  • Album view not working correctly

    I just bought two albums via the Store (first two albums by Men At Work). Whenever I view them, iTunes insists on separating the first track from all the other tracks. (It does this in all three viewing modes - List, Grid, or Cover Flow.)
    The albums themselves are organized as they should be...iTunes isn't actually separating the albums, only the viewing of them. (Meaning, if I play the first track, then let it go, it'll go on to the second track, just like any other album.) What's going on? How can I stop iTunes from doing this?
    Also, in List mode, iTunes only does this when I tell it to show the Artwork column. Why would it do this? The album art itself is exactly the same for all tracks.
    Neither of these are compilations, BTW. Also, the tracks all have exactly the same name for the artist, album artist, etc. (Believe me, I checked that too.)

    Did you look at One album, still too many covers? Select all the tracks from one of the albums, change the Artist & *Album Artist* to *Men At WorkX* and add a trailling X to the Album title. On the Sorting tab put ticks against the *Sort Artist*, *Sort Album Artist* & *Sort Album* boxes then click OK to apply the changes. This should merge the album into one entity. Now put back the back the correct values and the album should stay joined up.
    tt2

  • JSF/JSP design view not displaying correctly

    Hi there
    I am using jdeveloper version Studio Edition Version 11.1.1.3.0 on windows 7. When I create a 3 column layout JSF page , the design view does not show 3 columns (This used work properly). Instead
    it shows .
    - <>/oracle/templates/threecolumnTemplate.jspx
    I am used to seeing 3 columns start,middle and end (in blue). I have not changed any configuration settings.
    regards

    What does the source tab shows? what's the actual code of your page?

  • Design view not displaying correctly, but web does?

    I'm working on changing up the menu on a website, and while it displays correctly, the design view is way off. I know I should only worry about my results and my code, but I can't help but wonder where the issue is. Any thoughts?

    Try validating the page first at http://validator.w3.org - what do you get?

Maybe you are looking for