Help The O'clocker Newbie !!! Please !!!

Hi, there ... have already bought an Athlon XP 2800+ (Barton) and I would like to know if I can get it to 3000+, just by changing the multiplier...
How do I know if my multiplier is unlocked ?
Thanks in advance,
Diego Mazulo.

did u try reading the sticky about overclocking at the top of the forum, also make a sig with all your system specs and psu specs, please

Similar Messages

  • Urgent help for extremely new newbie - please.

    I have been asked to set up a Labview program to graph and log
    thermocouple temperature measurements from two Keithley 2001 Multimeters
    and a DC voltage from HP 34420A nano Volt/Micro Ohm Meter. All three are
    instruments are IEEE interfaced to a Windows 98 machine running Labview
    (version 5.0 I think.) I have a couple of weeks to get the job done.
    The problem is that I have never used Labview. I am an experienced C,
    Fortran, BASIC programmer but this graphical system is completely new.
    My situation is complicated because I am told the experienced person who
    was originally going to set this up left under bad circumstances and
    took many of the manuals. I would greatly appreciate any and all help I
    can get.
    Please feel free to send responses directly to me.
    [email protected]
    Thanks,
    Stan Thomas

    In article
    <[email protected]>,
    Stan Thomas
    wrote:
    > I have been asked to set up a Labview program
    to graph and log
    > thermocouple temperature measurements from two
    Keithley 2001 Multimeters
    > and a DC voltage from HP 34420A nano Volt/Micro
    Ohm Meter. All three are
    > instruments are IEEE interfaced to a Windows 98
    machine running Labview
    > (version 5.0 I think.) I have a couple of
    weeks to get the job done.
    > The problem is that I have never used Labview.
    I am an experienced C,
    > Fortran, BASIC programmer but this graphical
    system is completely new.
    > My situation is complicated because I am told
    the experienced person who
    > was originally going to set this up left under
    bad circumstances and
    > took man
    y of the manuals. I would greatly
    appreciate any and all help I
    > can get.
    >
    > Please feel free to send responses directly to
    me.
    >
    > [email protected]
    >
    > Thanks,
    >
    > Stan Thomas
    >
    >
    All manuals are available at
    http://www.natinst.com/manuals/
    They also have an example program database at
    http://www.natinst.com/support/epd/
    Sten Karlson
    D/A Production AB
    SWEDEN
    Sent via Deja.com http://www.deja.com/
    Share what you know. Learn what you don't.

  • Help for a Mac newbie please!

    Hi all,
    I just got my lovely MacBook Pro yesterday... and could use some help with these 2 problems...
    1 - on my Windows PC I have a VPN connection to 1 of my clients. When I tried to set it up on the Mac it's asking for an IPSEC shared secret? Is there any way to disable this requirement, or does my client have to set a key on his server?
    2 - I am having a problem connecting to my windows laptop through my home network...if I enable the Guest account on windows XP, the MacBook connects no problem. If however [as I really want to] I try to connect as a "proper" user with username and password, the Mac keeps telling me the username or password is wrong...which it definitely isn't!
    My thought is regarding the "domain"...I don't have one set up at home...just a workgroup called "home"...so when I try to login I am only typing in the username...the tooltip for the usernae field says domain\username...do I need to put anything here for domain, and if I do, what...as there isnt one!
    Thanks,
    Nige

    Try my post
    http://discussions.apple.com/thread.jspa?threadID=1359723&tstart=0

  • Help for an Apple newbie please???

    Hi all, I have just acquired my first Apple computer which is an older PowerPC G3 running OS X 10.1.2
    I would like to know how I go about upgrading the OS to a later version please? For example can I simply purchase a copy of OS X 10.3 or 4 and install it or do I need to go through the intermediate versions (10.2 to 10.3 etc)?
    Does anyone know if these later OS are even compatible with the PowerPC G3?
    Sorry for the basic questions, but as I say I am a complete novice with Apple computers and your guidance would be greatly appreciated.
    thanks,
    Graham
    PowerPC G3   Mac OS X (10.1.x)  

    Hi Graham,
    you have to buy the retail full install disks, regardless whether you upgrade to 10.3. or 10.4. Please also post the exact model of G3 you have. Not all G3s are compatible with 10.3 and only a few can run 10.4. You might want to check out the system requirements:
    Requirements for Mac OS X 10.3
    Requirements for Mac OS X 10.4
    Be aware that you cannot upgrade directly from 10.1.x to 10.4! You either have to upgrade to 10.2 or 10.3 first or you perform an Erase&Install.
    Most likely you will need a firmware upgrade prior to the upgrade: Firmware Upgrades
    If this answered your question please consider granting some stars: Why reward points?

  • Help for a java Newbie please!

    Hey guys I'm writing this program for my Java 1 class I can't seem to get it complie. This is the first time we've worked with building out own classes. And I have a feeling that I'm doing something small and silly. If someone could just take a look at it I'd be more than happy.
    This is the Class we had to write it has 4 different fields of "employee information" This one looks fine.
    public class Employee
       private String name;           
       private int idNumber;      
       private String department;
       private String position;
       public Employee(String theName, int theIdNumber, String theDepartment,
                        String thePosition)
             name = theName;
             idNumber = theIdNumber;
             department = theDepartment;
             position = thePosition;
       public void setName( String theName )
             name = theName;
       public void setIdNumber( int theIdNumber )
                idNumber = theIdNumber;
       public void setDepartment( String theDepartment )
                department = theDepartment;
       public void setPosition( String thePosition )
                position = thePosition;
       public String getName()
                return name;
      public int getIdNumber()
                return idNumber;
      public String getDepartment()
                  return department;
      public String getPosition()
                 return position;
    } I think this one is good, it compiles just fine.
    Now we had to write a program that accesses the class and store "employee information" for 3 different employees and recall it. It only recalls for one right now, it doesn't compile though... sad day. Any help would be AMAZING THANKS in advanced.
    import javax.swing.JOptionPane;
    public class EmployeeInfo
       public static void main(String[] args)
           String firstEmployeeName = "Susan Meyers";
           String secondEmployeeName = "Mark Jones" ;
           String thridEmployeeName = "Joy Rogers";
           int firstEmployeeId = 47899;
           int secondEmployeeId = 39119;
           int thirdEmployeeId = 81774;
           String firstEmployeeDepartment = "Accounting";
           String secondEmployeeDepartment = "IT";
           String thirdEmployeeDepartment = "Manufacturing";
           String firstEmployeePosition = "Vice President";
           String secondEmployeePosition = "Programmer";
           String thirdEmployeePosition = "Engineer";
           Employee Employee1 = new Employee();
           Employee1.setName(firstEmployeeName);
           Employee1.setIdNumber(firstEmployeeId);
           Employee1.setDepartment(firstEmployeeDepartment);
           Employee1.setPosition(firstEmployeePosition);
           Employee Employee2 = new Employee();
           Employee2.setName(secondEmployeeName);
           Employee2.setIdNumber(secondEmployeeId);
           Employee2.setDepartment(secondEmployeeDepartment);
           Employee2.setPosition(secondEmployeePosition);
           Employee Employee3 = new Employee();
           Employee3.setName(thirdEmployeeName);
           Employee3.setIdNumber(thirdEmployeeId);
           Employee3.setDepartment(thirdEmployeeDepartment);
           Employee3.setPosition(thirdEmployeePosition);
           JOptionPane.showMessageDialog(null, "Name          ID Number   " +
                                         "Department      Position     /n" +
                                         Employee1.getName() + "   " +
                                         Employee1.getIdNumber() + "   " +
                                         Employee1.getDepartment() + "      /n");
      System.exit(0);
    }

    Also the compiling error I get is
    O:\HomeWork\CIS 260\Assignment 5\EmployeeInfo.java:28: cannot find symbol
    symbol  : constructor Employee()
    location: class Employee
           Employee Employee1 = new Employee();
                                   ^
    O:\HomeWork\CIS 260\Assignment 5\EmployeeInfo.java:39: cannot find symbol
    symbol  : constructor Employee()
    location: class Employee
           Employee Employee2 = new Employee();
                                   ^
    O:\HomeWork\CIS 260\Assignment 5\EmployeeInfo.java:50: cannot find symbol
    symbol  : constructor Employee()
    location: class Employee
           Employee Employee3 = new Employee();
                                   ^
    O:\HomeWork\CIS 260\Assignment 5\EmployeeInfo.java:52: cannot find symbol
    symbol  : variable thirdEmployeeName
    location: class EmployeeInfo
           Employee3.setName(thirdEmployeeName);
                                ^
    4 errors

  • Help for a Bluetooth Newbie please!

    Hi
    I have just got a Nokia 6230i (which looks like i may have alot of problems with according to your forums!).
    I am trying to connect up to my PC. I have a very basic question which is, how do i know if my computer has bluetooth on it? it is Windows XP.
    When i installed the PC Suite disc i got with the phone it said it said my available connections were bluetooth, serial cable and USB, which i took to meaning i had bluetooth on my computer! Am i completely wrong?
    I am completely new to all this bluetooth stuff sorry. i have made my phone visible (if this is the same as 'unhiding' it.) and urned it on, but when i try to connect through the PC Suite software, it say it cannot be connected.
    Help!!

    Yes, the other phrase is "dongle", typically what is sold are small Bluetooth adapters (dongles) that can be attached to the USB port in your PC.
    There are certainly many options available. If you go to a store I would try to make sure form the sales person that the dongle supports Microsoft Windows XP Bluetooth.
    Microsoft has Bluetooth sw in Windows in Windows XP, but the Service Pack needs to be 2. YOu can check you system setup easily by:
    Right click on the "phone icon" in your Windows Tray (area in bottom right in your screen) Select "about PC Suite" from the list and click. Windows opens, select "system info" and you can see what Windows version you have.
    If you have something like this visible:
    Operating system:
    Microsoft Windows XP
    Build 2600
    Service Pack 2
    Bluetooth stack:
    Microsoft Bluetooth stack
    Version 5.1.2600.2180
    Then it will be relatively easy to take Bluetooth into use in your PC.
    Just attach the dongle to USB port and let Windows guide you through the Bluetooth dongle driver install process.
    Then you will have the possibility to connect your phone and Nokia PC Suite over Bluetooth.

  • How do I set the master clock output frequency on the PCI-1424?

    I want to use the master clock to generate the pixel clock to the imaging chip.

    Hi,
    We have tried everything to be able to set the Master Clock Frequency (please confirm pins 89 and 90 on the 100 pin connector). Everything we try including opening NI supplied camera files sets the Master clock to 40MHz.
    You're code however does do something, the Master clock frequency is set to 5MHz when we open a camera file with your code included. All the attributes show up in MaX but changing the values from Max has no effect, and the frequency remains at 5MHz. We undertake an apply and snap after each change of value with no effect.
    Am I missing something as the command OnBoardClock is supposed to be used to set the Master Clock Frequency, but you don't use that in your text at all. I would appreciate an explanation of the text yo
    u use, if you have the time, as I cannot find any reference to how the software knows what "Frame Grabber Clock" is.
    Thank you in advance for your help.
    Andy

  • The mail application on my I-Mac dates all mail, whether sent or received, as 5th (of whatever month it is). The computer clock is working, so it's not that. And the time seems to be right. I have no problem with my MacBook. Can anyone help, please?

    The mail application on my I-Mac dates all emails, in or out, as 5th (of whatever month it is). It seems to get the time right.
    The computer clock is fine. I have no problem with my MacBook - just with the I-Mac. Any ideas, please?

    OK Vicky, good clues...
    See if this helps...
    Open Keychain Access in Utilities, use Keychain First Aid under the Keychain Menu item, then either check the Password under that item, change it, or delete it and start over. See if there are duplicates, should be one for Incoming & one for Outgoing.
    Resetting your keychain in Mac OS X...
    If Keychain First Aid finds an issue that it cannot repair, or if you do not know your keychain password, you may need to reset your keychain.
    http://support.apple.com/kb/TS1544

  • Help with the alarm clock, please!

    i'm using the ipod mini, and every morning the alarm clock goes off with the exact same song. is it possible to make the mini choose the alarm clock's track randomly? or, at least, is it possible to choose a different song to start my morning off with?
    thanks!

    The iPod wakes up to a song from a playlist. It chooses the first song in the list.
    Although I've never tried it, it may choose something other than the first song in the list if you set the songs to "shuffle".
    Failing that, you would have to create a different playlist with a different song and select that to wake up to.

  • I am not able to launch FF everytime i tr to open it, it says FF has to submit a crash report, i even tried doing that and the report was submitted too, but stiil FF did not start, and the problem still persists, please help me solve this issue in English

    Question
    I am not able to launch FF everytime i try to open it, it says FF has to submit a crash report,and restore yr tabs. I even tried doing that and the report was submitted too, but still FF did not start, and the problem still persists, please help me solve this issue
    '''(in English)'''

    Hi Danny,
    Per my understanding that you can't get the expect result by using the expression "=Count(Fields!TICKET_STATUS.Value=4) " to count the the TICKET_STATUS which value is 4, the result will returns the count of all the TICKET_STATUS values(206)
    but not 180, right?
    I have tested on my local environment and can reproduce the issue, the issue caused by you are using the count() function in the incorrect way, please modify the expression as below and have a test:
    =COUNT(IIF(Fields!TICKET_STATUS.Value=4 ,1,Nothing))
    or
    =SUM(IIF(Fields!TICKET_STATUS=4,1,0))
    If you still have any problem, please feel free to ask.
    Regards,
    Vicky Liu
    Vicky Liu
    TechNet Community Support

  • Unable to Update iPhoto after upgrading to Maverick.  Error "There was an error in the App Store. Please try again later. (20)".  Please help.

    Hello,
    I just updated my software to Mavericks and I have been trying to update iPhoto on my system without success.  Error from App Store is "There was an error in the App Store. Please try again later. (20)".
    Can anyone help with this please.
    Thank you.

    Try this:
    Make sure this checkbox is checked in the System/Sharing preference pane:
    If it is, uncheck it and then recheck and try ordering again.
    OT

  • Help! My iPod touch won't let me download any apps. A message keeps coming up saying "This Apple ID cannot be used for the iTunes store. Please enter another Apple ID" I changed my ID to see if that would work but the same message still comes up.

    Help! My iPod touch won't let me download any apps. A message keeps coming up saying "This Apple ID cannot be used for the iTunes store. Please enter another Apple ID" I changed my ID to see if that would work but the same message still comes up.

    Where are you physically located?
    What country's Store are you using?
    The two have to be the same and the payment method for your account also has to be associated (billing address, where iTunes gift card was purchased) with that country.
    Has the ID(s) worked before for purchases for this country's store?

  • I can not longer send email from my .me email. in outlook 2010 on my PC. I can still recieve emails fine. I have not changed my settings at all. I have however tried all the settings i can find on the support pages. PLEASE HELP

    I can still receive icloud ( ME email address) emails fine. I have not changed my settings at all. I have however tried all the settings I can find on the support pages. PLEASE HELP. Nothing has changed. This suddenly just started happening around a month ago. To frustrate me apple does not seem to have a support email or any method to contact them with this issue to do with their email product. I have spent ages going through the apple support sites and I keep getting asked for an apple product to mark it against. I have no apple product as I am using a PC but I am accessing and using their email product. Is there even a phone number I can call? Surely there is a support area for their Email server issues. Can anyone help? It is driving me mad and causing me major issues. My outlook is Outlook 2010 on a windows 8 PC. As I have said it worked fine then one day decided to stop sending emails.
    Thanks for your help.

    Hi - this problem is discussed here:
    https://discussions.apple.com/thread/5375046?start=0&tstart=0

  • I've upgraded to OS 10.8.2 and my Bowers and Wilkins MM-1 Speakers were working fine until today, and now they won't play any sound at all, even though iTunes shows the audio is playing. I've tried both the headphone jack and the USB port. Please help!

    I've upgraded to OS 10.8.2 and my Bowers and Wilkins MM-1 Speakers were working fine until today, and now they won't play any sound at all, even though iTunes shows the audio is playing. I've tried both the headphone jack and the USB port. Please help! I don't want to have to be stuck using my internal speakers!
    Thank you,
    Chris

    Michael,
    Thanks. I haven't mixed down the audio or checked the number of tracks in Prefs. Good points.
    As far as a mixdown goes, I'll definitely give it a try, though I wonder whether or not the tracks will be recognized during mix down recording - given that you can't hear either of those segments in playback. Just have to try.
    Re the preferred number of allowed tracks - I'll go check as soon as I send this off, but I'm not sure that applies in this case, since the two Channels containing the segments that are pinked out are not in additional tracks. I should have mentioned that other audio clips and segments on the same Channels in the SAME tracks ARE heard in playback. As are two additional track in the 2nd Sequence. It's only when the two sequences are joined that the pink tinted segments can't be heard. Within the sequence the same audio cuts playback as they should. Thanks again &
    Best regards,
    David

  • After Aperture 3 update, I can't access old libraries. It tells me to close and relaunch but when I do this it just opens again on the same library. Please help!

    I have just downloaded the latest iOS update for my computer, and then I was unable to use Aperture until I upgraded its software also. I did this, and it seemed to work fine on relaunch with new version - the last library I had open worked fine. BUT yesterday I tried to open a different library and I got a message saying
    "the selected library is from an older version of Aperture and requires a relaunch to switch"
    I click the relaunch button and it relaunches but it just opens on the same library again. I don't know how to make it relaunch properly with the different library. Please help!! Thanks

    TThe message is a bit deceptive the old libraries need to be upgraded before they can be used. To upgrade quit Aperture select one of the old libraries with the Finder and double click it. This will open Aperture on that library and ask if you want to upgrade it.
    WWhile the procedure is safe it is always a good idea to have a backup of the libraries before doing this.

Maybe you are looking for