Is Something Wrong here?

Hi, I have a K8N Neo2 Platinum with a Winchester 3000+ Running at stock, with stock fan and heatsink and everything, although I am a complete newbie when it comes to temperatures and stuff.
Using corecenter it tells me that my CPU fan is running at 1600 RPM but that seems really slow to me, as before my fan used to run at about 4000 RPM. My CPU temperature is also 40C is that too high or something?
As i said before i dont know anything about these temperatures so i wouldnt know whats too hot or too slow with fan speeds.
Thanks!

You can play with the fan speeds and adjust it to where you can't here it (or at least to where it does not bother you). But as far as temps go (I am not to familiar with this boards bad temp readings) but if your processor is running at 40c that is great. As long as you can keep it under 50c most people here would be happy. Try getting speedfan (do a google search) and post the temps in that program. (Just curious as mine is about 4-5c hotter than corecenter, not positive which is accurate if either are)
Good Luck
Jeremy

Similar Messages

  • 2,900 songs, 23GB?? false advertising, or I'm doing something wrong here...

    Complete novice here. Just bought Ipod touch 16gb then upgraded to the 32 GB because I got about halfway through loading my CDs into iTunes when I noticed the GB showing in iTunes was exceeding the 16 GB Ipod... 16gb was advertised to hold ~3,500 songs along with hours and hours of video. So now I am up to 2,900 songs and it's 23GB - there's got to be something wrong here. If I go further, I won't be able to fit onto the new 32GB, nevermind even being able to put video, etc on it!! Talked to a guy at Best Buy and he was perplexed and felt that 2,000 songs should only be about 8GB..
    From spending hours on these boards looking for info, it appears that my import settings that were the default in iTunes (that I downloaded on 3/26/09) of AAC format and iTunes Plus, results in large file sizes....
    I have literally spent DAYS importing CDs and really don't want to redo it under different import settings... I noticed when I right click on my Itunes music folder>properties>general tab > click on advanced attributes, there is a checkbox that I can compress contents to save disk space.
    So question is
    1. is the above method appropriate to compress the files
    2. is there an easier way to 'convert' all my imported music (currently showing as MP4) to MP3 that would be smaller file size (if so, is there a downside to doing this?)
    3. could there be other reasons for this large file size or other ideas/suggestions??
    Thanks in advance!
    Tara

    Hey, now. This line scares me:
    "I guess I'll learn more over time about what material I want to carry around with me on the iPod vs. keeping stuff on the computer as I get used to it!"
    You should always keep it on the computer. If the only copy of a song is on your iPod, you are setting yourself up for a minor disaster. Sooner or later you will need to restore the iPod. There are any number of issues that can cause it to get wonky and unusable. When that happens, the troubleshooting always has the step "restore your iPod" somewhere in the order of repair.
    When you reach that step, *everything on the iPod is erased*. If you only had content on the iPod, not on your computer (or at least on a backup) you will lose the content. Period. No chance to recover it.
    Please, if you insist on deleting from the computer, ensure you backup. Heck, backup anyhow. It just makes good sense.

  • Wow six hours to uploading 300 songs is  something wrong here is there something I'm missing I'm on DSL

    Wow six hours to uploading 300 songs is  something wrong here is there something I'm missing I'm on DSL

    You're not alone.  See here: https://discussions.apple.com/thread/3560535

  • Record type - Am I doing something wrong here

    Hi,
    I am writing a package for testing and I am facing issue in compiling this package.
    I am getting error
    PLS-00302: component 'ID' must be declared.
    PLS-00302: component 'STEP_ID' must be declared.
    PLS-00302: component 'STTS' must be declared.
    I am using record type. Below is the test code.
    I am on 10.2.0.4.0
    create table T1
       (id number,
        dtl_desc varchar2(400)
    create table T2
       (step_id number,
        id number,
        stts varchar2(400)
    create package pkg_1
    as
    type g_typ_stup_rec is record
         id  t1.id%type,
         step_id t2.step_id%type,
         stts  t2.stts%type
    g_ty_stup_tab is table of g_typ_stup_rec;
    procedure pr_stup_rec
         i_id in t1.id%type := 1,
         i_step_id in t2.step_id%type := 1,
         i_stts in t2.stts%type := 'SUCS',
         o_rec out g_ty_stup_tab
    end ;
    create package body pkg_1
    as
    procedure pr_stup_rec
          i_id in t1.id%type := 1,
          i_step_id in t2.step_id%type := 1,
          i_stts in t2.stts%type := 'SUCS',
          o_rec out g_ty_stup_tab
       is
       l_v_id t1.id%type;
       l_v_step_id  t2.step_id%type;
       select
           s_id.nextval
       into
           l_v_id
       from
           dual;
       select
           s_step_id.nextval
       into
           l_v_step_id
       from
           dual;
       o_rec.id      := l_v_id;
       o_rec.step_id := l_v_step_id;
       o_rec.stts    := i_stts ;
    end pr_stup_rec;
    procedure g_sp_ins_rec
          i_ins_rec in g_ty_stup_tab
       is
       insert into t1
        (id,
         desc
        values
         i_ins_rec.id,
         'TEST'
        insert into t2
           step_id,
           id.
           stts
          values
           i_ins_rec.step_id,
           i_ins_rec.id,
           i_ins_rec.stts
       commit;
    end g_sp_ins_rec;
    end pkg_1 ;
    Appreciate if you can point out what I am doing wrong here.
    Thanks in advance
    TA
    Edited by: user572194 on Feb 1, 2012 1:22 PM
    Edited by: user572194 on Feb 1, 2012 1:34 PM

    Surely, though, you have the ability to actually create these objects in your system (or in some local development environment) in order to verify that the code you're posting compiles and shows the problem you're trying to demonstrate, right?
    Your package definition, for example, fails to compile because you're missing the TYPE in your declaration of G_TY_STUP_TAB
    SQL> ed
    Wrote file afiedt.buf
      1  create or replace package pkg_1
      2  as
      3  type g_typ_stup_rec is record
      4     (
      5       id  t1.id%type,
      6       step_id t2.step_id%type,
      7       stts  t2.stts%type
      8     );
      9   type g_ty_stup_tab is table of g_typ_stup_rec;
    10   procedure pr_stup_rec
    11     (
    12       i_id in t1.id%type := 1,
    13       i_step_id in t2.step_id%type := 1,
    14       i_stts in t2.stts%type := 'SUCS',
    15       o_rec out g_ty_stup_tab
    16     );
    17*  end ;
    SQL> /
    Package created.Your package body is missing the BEGIN statements in both of the procedure definitions. Then it references the old DESC column from T1 which needs to be changed to DTL_DESC. Then, you're missing a couple of sequences. Once all those items are fixed, I think we're down to the compilation errors that you're originally talking about
    SQL> create or replace package body pkg_1
      2   as
      3   procedure pr_stup_rec
      4      (
      5        i_id in t1.id%type := 1,
      6        i_step_id in t2.step_id%type := 1,
      7        i_stts in t2.stts%type := 'SUCS',
      8        o_rec out g_ty_stup_tab
      9     )
    10  is
    11     l_v_id t1.id%type;
    12     l_v_step_id  t2.step_id%type;
    13  begin
    14     select
    15         s_id.nextval
    16     into
    17         l_v_id
    18     from
    19         dual;
    20     select
    21         s_step_id.nextval
    22     into
    23         l_v_step_id
    24     from
    25         dual;
    26     o_rec.id      := l_v_id;
    27     o_rec.step_id := l_v_step_id;
    28     o_rec.stts    := i_stts ;
    29  end pr_stup_rec;
    30  procedure g_sp_ins_rec
    31     (
    32        i_ins_rec in g_ty_stup_tab
    33     )
    34     is
    35  begin
    36     insert into t1
    37      (id,
    38       dtl_desc
    39      )
    40      values
    41      (
    42       i_ins_rec.id,
    43       'TEST'
    44      );
    45      insert into t2
    46        (
    47         step_id,
    48         id.
    49         stts
    50        )
    51        values
    52        (
    53         i_ins_rec.step_id,
    54         i_ins_rec.id,
    55         i_ins_rec.stts
    56        );
    57     commit;
    58   end g_sp_ins_rec;
    59   end pkg_1 ;
    60  /
    Warning: Package Body created with compilation errors.
    SQL> sho err
    Errors for PACKAGE BODY PKG_1:
    LINE/COL ERROR
    26/4     PL/SQL: Statement ignored
    26/10    PLS-00302: component 'ID' must be declared
    27/4     PL/SQL: Statement ignored
    27/10    PLS-00302: component 'STEP_ID' must be declared
    28/4     PL/SQL: Statement ignored
    28/10    PLS-00302: component 'STTS' must be declared
    36/4     PL/SQL: SQL Statement ignored
    42/16    PL/SQL: ORA-00984: column not allowed here
    42/16    PLS-00302: component 'ID' must be declared
    45/5     PL/SQL: SQL Statement ignored
    45/17    PL/SQL: ORA-00913: too many valuesThose errors are the result of treating a nested table of records as if it was a single record. pr_stup_rec is defined to return a collection of records. If you're using a collection of records, you'd have to initialize the collection and you'd have to reference a particular element of the collection when you wanted to assign values. Something like this, for example, will declare a local variable of type pkg_1.g_ty_stup_tab, initialize the collection, add an element to the collection, and assign the values to the individual components of the record that is the first element in the collection
    SQL> ed
    Wrote file afiedt.buf
      1  declare
      2    l_collection pkg_1.g_ty_stup_tab := new pkg_1.g_ty_stup_tab();
      3  begin
      4    l_collection.extend;
      5    l_collection(1).id := 1;
      6    l_collection(1).step_id := 10;
      7    l_collection(1).stts := 'Foo';
      8* end;
    SQL> /
    PL/SQL procedure successfully completed.Alternately, you could create a record type and add that as an element in your collection
    SQL> ed
    Wrote file afiedt.buf
      1  declare
      2    l_collection pkg_1.g_ty_stup_tab := new pkg_1.g_ty_stup_tab();
      3    l_record     pkg_1.g_typ_stup_rec;
      4  begin
      5    l_collection.extend;
      6    l_record.id := 1;
      7    l_record.step_id := 10;
      8    l_record.stts := 'Foo';
      9    l_collection(1) := l_record;
    10* end;
    SQL> /
    PL/SQL procedure successfully completed.But it's not obvious to me that you actually want to use a collection here. Perhaps you want your procedures to simply return a single record.
    Justin

  • Using Pages for e-books - am I doing something wrong here?

    Hi!
    I wrote 5 e-books with a total of around 1.500 pages in Pages. Great program
    Now I wanted to apply a template but in a mix og horror and frustration, I'm not sure if I got all this wrong.
    Can't I apply a template on a document already written? I bought a template with 10-12 different page setups, looking really nice.
    It's like I can only add new pages and move my text to them, page by page and I'm NOT going to do that with 1.500+ pages :s
    Am I doing this wrong? Is Pages the wrong choise for this?
    If not, what program would be the one to use for setting up my books?
    Thanks in advance for any feedback

    Pages templates do not work in this way, they have fairly poor templating and styling methods.
    If it is simply a matter of styling a lot of word processing you could open the previous work in Pages *Word Processing mode* and replace each style with an edited version of itself. Replacing colors is not so easy and layout extremely difficult.
    Pages does not have the efficient keyboard methods of applying styles, that more capable DTP packages have. So applying the styles is tedious.
    Even with styling unless you had been extremely careful dividing your paragraph, character and list styles you will likely have a lot of manual work to do. Pages does not have a method that I know of to show unstyled text that would drop through the cracks of any changes.
    If you did the previous work in *Layout mode*, you may as well start from scratch, there would be too much manual adjustments etc to make it worthwhile.
    To get the sophisticated updating of firstly styled text, you would need a DTP program that allows direct exchange of styles. To have the ability to change layout you really would need Adobe InDesign.
    Peter

  • TransactionScope has no effect - am I doing something wrong here ?

    I've so far been unable to get TransactionScope working with the Oracle 10g express database I'm using for development (have yet to try with other versions of Oracle).
    I suspect the problem is simple that the 2.0 ODP beta still doesn't have support for it.
    I'm looking at potentially switching to SQL-Server for our current project if I won't be able to use TransactionScope with Oracle in the near future (a month or two tops.).
    I've been redirected here by John Balogh from Oracle support who tells me that a member of the ODP development team should be able to answer my questions here.
    I've included the version details and a piece of sample code below:
    .NET runtime: 2.0.50727
    ODP: 10.2.0.100
    Oracle db: 10g express (will be upgraded to a full 10g version when we start deploying to the test servers in the coming weeks)
    using System;
    using System.Collections.Generic;
    using System.Text;
    using System.Transactions;
    namespace OracleTransactionScope
    class Program
    static void Main(string[] args)
    //create table for testing
    string connectionString = "Data Source=xxx;User Id=xxx;Password=xxx";
    Oracle.DataAccess.Client.OracleConnection conn = new Oracle.DataAccess.Client.OracleConnection(connectionString);
    conn.Open();
    Oracle.DataAccess.Client.OracleCommand com = new Oracle.DataAccess.Client.OracleCommand();
    com.CommandText = "drop table TBL_TEST";
    com.Connection = conn;
    try
    com.ExecuteNonQuery();
    catch (Oracle.DataAccess.Client.OracleException oe) { }
    com.CommandText = "create table TBL_TEST ( TEKST VARCHAR(4000 BYTE) )";
    com.Connection = conn;
    com.ExecuteNonQuery();
    com.CommandText = "insert into tbl_test values('initial value')";
    com.ExecuteNonQuery();
    conn.Close();
    //update table inside a transactionscope without completing it - should rollback any changes
    using (TransactionScope scope = new TransactionScope())
    conn = new Oracle.DataAccess.Client.OracleConnection();
    conn.ConnectionString = connectionString;
    conn.Open();
    com = new Oracle.DataAccess.Client.OracleCommand();
    com.Connection = conn;
    com.CommandText = "update tbl_test set TEKST = 'this should be rolled back'";
    com.ExecuteNonQuery();
    conn.Close();
    //at this point the contents of the TBL_TEST table should be "initial value" but are
    //in fact "this should be rolled back". This test setup works fine when run against a
    //MS SQL Server

    Again, all I am doing is :
    [TestFixture]
    public class TestClass
    private const string tam0ConStr =
    "Data Source=tam0; enlist=true;" +
    "User Id=A01IEE;Password=********" +
    "Min Pool Size=5;Max Pool Size=25;" +
    "Incr Pool Size=10;Decr Pool Size=5;";
    private const string conStr =
    "Data Source=dbc3; enlist=true;" +
    "User Id=cjb6268;Password=********;" +
    "Min Pool Size=5;Max Pool Size=25;" +
    "Incr Pool Size=10;Decr Pool Size=5;";
    private readonly string sql = string.Format(
    "Insert Into CBCSupport.TestTable" +
    "(TestText)Values('{0:HH:mm:ss}')",
    DateTime.Now);
    [Test]
    public void TestTxScope()
    using (var scop = new TransactionScope(TransactionScopeOption.RequiresNew))
    var con = new OracleConnection(conStr);
    var cmd = new OracleCommand(sql, con)
    {   CommandType = CommandType.Text,  CommandTimeout = 20};
    cmd.Connection.Open();
    cmd.ExecuteNonQuery();
    //scop.COmplete();
    And even though the scop.complete is commented out, the insert is committed, and is visible frm SQL Plus... Indeed, if I stop the code immediately after the cmd.ExecuteNonQuery(); , before the transactionScope dispose executes, I still can see the new row in the table...
    How do you get this to work ??

  • Something wrong here..need help

    When logging on to Verizon.com a couple hours ago, my 2 year old PW was not recognized.  Something about enhanced security, and had to be reset.  OK, was able to do that and pay my bill.  
      However.......   Immediately following, I tried to send an e-mail on OE, and received a OE Logon screen, which has a Remembered ID & PW.  Could not get signed in.  Just guessing, I then tried the above new verizon PW.  didn't work either.
    OK, I'll go to Tools/Accounts/Properties and reset.  Zilch.   OK, I'll create a new POP3 Account.  Zilch 
    I know have an OE screen that says the messages in the Outbound Box "do not have a valid account and do I want to use the default account".  When I hit the Yes button, I get the OE Logon screen again.
    I'm an old guy that doesn't comprehend much about computers, but seems to me the above new verizon.com PW has screwed up my Outlook Express?
    Any suggestions will be appreciated.
    Oh... I used the new PW to access Yahoo.Verizon netmail....there are messages in the Inbox that are not going to my OE Inbox.
    thank you

    1akman,
    I am sorry to hear about the trouble with Outlook and would be glad to assist. I have sent you a PM with some information so we may further assist you.
    Thank you,
    Tom_VZ
    Verizon Support
    Notice: Content posted by Verizon employees is meant to be informational and does not supercede or change the Verizon Forums User Guidelines or Terms or Service, or your Customer Agreement Terms and Conditions or Plan.

  • HT5824 Merging all my contacts on my iphone and those in iCloud seems impossible, I'm i doing something wrong here?

    I am having difficulty merging all my contacts: some on my phone, and others in my iCloud account. is there a way to do this?

    Welcome to the Apple Community.
    Have you tried turning contact syncing off (settings > iCloud), choosing keep on phone when prompted then re-enabling cotact syncing and choosing merge when prompted.

  • FF Nightly look exactly like FF 7 or is there something wrong here?

    I have ran Firefox 7.0.1 since it was released, but wanted to try Firefox Nightly to test out what x64 browsing was like. I downloaded Nightly and the x64 version of Adobe, installed everything, but when I run nightly (from the Nightly icon on my desktop), it looks exactly like my FF 7.0.1 browser clear down to saying that it is FF 7.0.1 when I look at the about Firefox under help. Am I just way behind and nightly has been made to look like 7 when it is actually running Nightly or is there a problem and my laptop is actually opening FF 7 when I click on the nightly icon?

    I guess high security mode mean means trusted and is running Active-X, I don't know Looked okay to me in Firefox, for '''baixaki.com.br''', then tried IE and I think it looks almost the same, advertises Firefox there in the first block in IE; otherwise the same. My IE settings are set at Internet Medium security, but it was customized, some active-x stuff is enabled but most are not and I wasn't asked anything in bringing it up in IE.
    Looked the same with or without Adblock Plus in Firefox but there was a lot of stuff blocked like tracking and double-click. Though it may be misleading because I do have more than just AdBlock Plus to block unwanted files within web pages.
    Since you say you are okay if you clear cache, I would suggest that you clear cache each time you end your session, solves a lot of problems, including some problems with new versions of Firefox where you should clear cache.
    http://img232.imageshack.us/img232/4928/clearcachew.png
    It would be easier for others to test if you include the links as text as well, but I think since I can see that first one okay that one link was enough this time. I can test more later if the above doesn't work for you. You can clear cache on all of your browsers when they end.
    When I backup my personal files I also clear out temporary files used by most of my Firefox profiles, and other browsers.
    Problems sometimes appearing is indicative of different ads, I would suggest installing Adblock Plus and then the EasyList US filter subscription.
    Use the "Esc" key to close images attached in this forum, which is a lot easier than scrolling to click on an obscured "X" or a close link.

  • Perplexed as to what went wrong here

    ok so im writing this prog for school and im all but finished with it xcept im running into one small problem.
    i have 5 int objects each read individually by the program.
    what i need to to is to ad them all together which seems like it should be simple right.
    so i do it like this
    private int Total;
    public setTotal(int Total)
    Total = intA+intB+intC+intD+intF;
    all the int values are private as well
    but for some reason it wont total.
    am i doing something wrong here?
    i tested each value with
    ex:System.out.printline(intA);
    etc..etc... to make sure it was reading the values set and it prints them out fine (so i know each int is holding its value)
    any input would be greatly appreciated.

    i have 5 int objectsint is a primitive type. You have 5 int variables. Not objects.
    public setTotal (int Total) {
       Total = intA + intB + intC + intD + intF;
    }You are setting the value of the local variable Total (which is the parameter name) to the sum of the 5 int variables. To set the value of the instance field Total, usepublic setTotal (int Total) {
       this.Total = intA + intB + intC + intD + intF;
    }A note: by convention, variable names start with a lowercase letter. Your variable Total should be named total.
    Moreover, the setTotal method does not require a parameter.
    db

  • Am I misunderstanding stateful webservice or doing something wrong?

    Hi there...
    I am trying to create a stateful webservice... this is what I did exactly in JDeveloper
    1: created the following class
    *public class test {*
    public int O;
    *public test() {*
    *public String getIt() {*
    O++;
    return String.valueOf(O);
    2: Created a webservice out of it exposing the getIt method. I made sure that it is a stateful webservice. I set its scope to be for the session, lasting for 3000 second.
    3: run the webservice
    4: connected to it from VB.NET using the wizard
    5: adding the following code in vb :
    Dim J As New ServiceReference1.MyWebService1Client
    J.Open() ' open the connection with the service
    For I = 1 To 100  ' execute the call 100 times
    MsgBox(J.getIt) ' call the method and display the result in a message box
    Next
    J.Close() ' close the connection
    what I was expecting is that the counter should return the the values 1,2,3,...
    however what I am getting is the value 1 all the time. This means that the object test is being destroyed and created again with each call.
    I am doing something wrong here for sure, what I want to do is that the object test is being created once , and it should last for the whole session so that I can get the values 1,2,3,4, .
    kindly if you know how what I am doing wrong let me know.
    thanks.

    Hi there...
    thank you so much for these links. I just modified the webservice to generate an application module and store it in the session of the user. When doing multiple calls I was able manage different transactions.
    for now I am not releasing the application module. The question is now if the session of the user is destroyed, will all the resources of the application module go back to the system? I assume so...
    thanks again for your help.
    yours
    mkaatr

  • HT201318 Hello. I have just built a website using iWeb but cannot upload it. I curently have the 25gb account. There doesn't appear to be any facility here for the net. ASm I correct in thinking I need an upgrade, or am I doing something wrong?  Thanks

    Hello. I have just built a website using iWeb but cannot upload it. I curently have the 25gb account. There doesn't appear to be any facility here for the net. Am I correct in thinking I need an upgrade, or am I doing something wrong?  Thanks

    iCloud does not provide website hosting. You will need to find another website hosting service - there are many to choose from - and upload your site there. How you do this depends on what version of iWeb you have.
    In order to upload your existing site in iWeb '09 and above:
    Click on the name of the site in the sidebar: the publishing settings pane will open. Set 'Publish to' to 'FTP'. Enter the name of the site and a contact address (if desired).
    In the 'FTP Server Settings' section you will need to know the server address (your hosting service can tell you that), and your username and password for that service. Your site will be published in a folder with its name at root level of the server, with an index.html file at root level (which will overwrite any index.html file which may be there already). The 'Directory/Path' field may need to include a path such as '/webspace/' or 'ht_docs/' - this is dependent on your hosting service and they should tell you this. If you want to publish within a folder you can add that to the path.
    You can then click the 'Test connection' button so that iWeb can check that it can get access to your server space. You should enter the URL of the site in the 'URL' field so that rss feeds and internal links have the correct address.
    To publish using an earlier version of iWeb:
    From the File menu choose 'Publish to a folder'. You should create a folder somewhere convenient specifically for this and choose it when publishing to a folder: this folder should not contain anything else.
    You now need an FTP program (FTP is the 'protocol' used for uploading) to upload the contents of the folder to your server.Cyberduck is free (donation requested): Transmit is $34 but I think better. You will need the server address (your hosting service can tell you that), and your username and password for that service. You can drag the contents of your folder to your webspace, or create a folder there and drag the contents to that if you prefer.
    Some facilities that iWeb provided when hosted on MobileMe will not work on other servers: comments on weblogs and photos, password-protecting your site (some hosts may provide this), searching in the weblog, and a hits counter (again, some hosts can provide code for this). Slideshows in iWeb will work on other hosts than MobileMe (they use different code when FTPing which doesn't depend on scripts hosted on MobileMe as the MobileMe version does); however there is an issue with the 'buttons' which control the slideshow which are images hosted on me.com - these depend on images which used to be hosted on MobileMe. The poster 'Old Toad' on the Apple Forums has provided a workaround, described at http://oldtoadstutorials.net/No.26.html.

  • I'm not able to down load free apps without money on a credit card but the app is fee is this correct or is something wrong with my ipad

    I can not download apps that are free without money on a credit card. Is this right or is something wrong with my ipad

    Read here... https://discussions.apple.com/thread/5979741
    Keeka36 wrote:
    is something wrong with my ipad
    No.

  • Something wrong with my CD/DVD drive??

    I think there is something wrong with my CD/DVD drive. here are the things I notice:
    At time the CD drive will act up and make a little noise (same normal noise as when mac starts up) but for no reason
    When I put my mac on stand by, my CD drive decided to make some noise and then it woke the computer from sleep mode
    Any suggestions? What could be the problem here?
    Thanks.
    Dorian

    well i live in a small town so finding an apple repair service is out of the question....but i will probably just make an appointment....now my biggest problem is i cant find the receipt from best buy where i bought it from. but as soon as i got home and turned it on i registered it online and when i went to check it earlier and typed the serial number it says its still under limited warranty until january 18 2008...can i just tell them the serial number since i dont have the receipt anymore or will they charge me since i dont have the receipt? should i just buy applecare before i make an appointment and bring it in? thanks for all of your help

  • I am using iphone5 and when sending sms within 160 characters i am getting 2 sms counts deduction & i hear the message send sound twice. what is wrong here. can some one please help me here???

    i am using iphone5 and when sending sms within 160 characters i am getting 2 sms counts deduction & i hear the message send sound twice. what is wrong here. can some one please help me here???
    APPLE need to do something here!!!!!!1

    Hi...
    Thanks for your repaly .
    and i am not bale to post a question in developer forum i tried hard but i didnt get .Can you plz explain me how to post a question in developer forum this is very helpfull for me.Because i never did this thing.

Maybe you are looking for

  • Cisco Jabber Client - QoS Config

    Hi Guys, I'll be deploying the new jabber client for a customer and i'm unsure of what QoS to configure on the switch ports for end users. Users will also have 7942 handsets, so if i configure auto qos voip cisco-phone, I doubt this will protect the

  • Will the full version of adobe allow you to review and scroll 2 documents at the same time?

    will the full version of adobe allow you to review and scroll 2 documents at the same time?

  • Problem installing

    ok i have the creative sound blaster audigy advanced mb cd that came with my laptop and i cant seem to get it to install again. i had to format my hard dri've so thats what i need it again. now i know it worked before. and i even tried the download v

  • Playing games on windows xp

    hey... i have just install windows xp on my macbook using boot camp, can i play windows platform games like "command and conquer" on my mac using the windows xp ? will the games run smoothly like on a normal windows machine ?

  • My photo stream does't update

    My photo stream work perfect in my iphone 5s but in my pc look like it does not get the new photos.