Dv6 pavilion hardware problem HELP PLZ

My hard drive makes a clicking noise. I know its wrecked but i want to know where i can get a new hardrive that fits my laptop. Please help

You will need to call AppleCare and talk to a Customer Service representative. This is a user-to-user forum, and we cannot help you with this issue.

Similar Messages

  • Table Control Text  fields problem , help plz

    Hello Anand , Rich , John & All
      I hav problem with Text 3 fields( type c)(either L or R aligned )  , it is not geting updated , otherwise everything else is perfectly fine(scrolling,sorting etc ....) .
    Fields giving problem are
    1. Status(20) type c
    2. Fdat  type date
    3. Remark(100) type c
    All numerical fields are working fine .
    <u><b> My yahoo messenger-id is [email protected]</b></u>
    <b>Any light on this will be awarded plz .</b>
    FLOW LOGIC
    PROCESS BEFORE OUTPUT.
    MODULE SET_STATUS.
    LOOP AT      ITAB
          WITH    CONTROL TCL1
          CURSOR  TCL1-CURRENT_LINE .
       MODULE SET_LINE_COUNT .
    ENDLOOP.
    PROCESS AFTER INPUT.
    MODULE UPD_OK_COD.
    MODULE EXIT_COMAND AT EXIT-COMMAND.
    MODULE SCROLL_SORT.
    LOOP AT ITAB.
          MODULE UPDATE_ITAB.
    ENDLOOP.
    MODULE UPDATE_TABLE.
    REPORT ZSD_REP_ORDER_BANK_CHANGE NO STANDARD PAGE HEADING LINE-SIZE 255.
    TABLES: VBAK,VBAP,VBRK,ZSD_TABL_ORDBANK,MARA,KONV.
    CONTROLS: TCL1 TYPE TABLEVIEW USING SCREEN 0200.
    DATA: ITAB LIKE ZSD_TABL_ORDBANK OCCURS 0 WITH HEADER LINE,
          WA_ITAB LIKE ZSD_TABL_ORDBANK,
          OK_CODE LIKE SY-UCOMM,
          SAVE_OK_CODE LIKE SY-UCOMM,
          UPD_OK_CODE LIKE SY-UCOMM,
          ANSWER TYPE C,
          I LIKE SY-LOOPC ,
          J LIKE SY-LOOPC,
          V_LINES LIKE SY-LOOPC,
          LINE_COUNT LIKE SY-LOOPC,
          STS  TYPE N,
          EMGRP LIKE MARA-EXTWG,
          QTY LIKE ZSD_TABL_ORDBANK-QTY,
          UPRICE LIKE ZSD_TABL_ORDBANK-UPRICE,
          TOT LIKE ZSD_TABL_ORDBANK-TOT,
          INO LIKE VBAP-POSNR,
          COL TYPE CXTAB_COLUMN,
          COPIED_ONCE ,
          FLDNAME(100),HELP(100).
    FIELD-SYMBOLS:
         <FS_ITAB> LIKE LINE OF ITAB,
         <FS_TCL1> LIKE LINE OF TCL1-COLS.
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-000.
      SELECT-OPTIONS: S_CCODE FOR ZSD_TABL_ORDBANK-CCODE
                              NO INTERVALS NO-EXTENSION  OBLIGATORY,
                      S_SORG  FOR ZSD_TABL_ORDBANK-SORG
                              NO INTERVALS NO-EXTENSION  OBLIGATORY,
                      S_DCHAN FOR ZSD_TABL_ORDBANK-DISTCHAN,
                      S_DIV FOR ZSD_TABL_ORDBANK-DIV,
                      S_MATNO FOR ZSD_TABL_ORDBANK-MATNO,
                      S_CUSTNO FOR ZSD_TABL_ORDBANK-CUSTNO ,
                      S_QTNO FOR ZSD_TABL_ORDBANK-QTNO,
                      S_QTDAT FOR ZSD_TABL_ORDBANK-QTDAT,
                      S_QTVDAT FOR ZSD_TABL_ORDBANK-QTVALDAT,
                      S_SONO   FOR ZSD_TABL_ORDBANK-SONO.
    SELECTION-SCREEN END OF BLOCK b1.
    AT SELECTION-SCREEN.
       SELECT * FROM  ZSD_TABL_ORDBANK
                   INTO  TABLE ITAB
                   WHERE CCODE IN S_CCODE
                     AND SORG IN  S_SORG
                     AND DISTCHAN IN  S_DCHAN
                     AND DIV IN S_DIV
                     AND MATNO IN  S_MATNO
                     AND CUSTNO IN  S_CUSTNO
                     AND QTNO IN  S_QTNO
                     AND QTDAT IN  S_QTDAT
                     AND QTVALDAT IN  S_QTVDAT
                     AND SONO IN  S_SONO .
          IF SY-SUBRC EQ 0.
             REFRESH ITAB.
             CLEAR COPIED_ONCE.
             CALL SCREEN 0200.
          ELSE.
             MESSAGE E012(ZQOTBANK) .
          ENDIF.
    *&      Module  SET_STATUS  OUTPUT
    *       text
    MODULE SET_STATUS OUTPUT.
      SET PF-STATUS '0200'.
      SET TITLEBAR '0200'.
        IF COPIED_ONCE IS INITIAL.
          SELECT * FROM  ZSD_TABL_ORDBANK
                   INTO  TABLE ITAB
                   WHERE CCODE IN S_CCODE
                     AND SORG IN  S_SORG
                     AND DISTCHAN IN  S_DCHAN
                     AND DIV IN S_DIV
                     AND MATNO IN  S_MATNO
                     AND CUSTNO IN  S_CUSTNO
                     AND QTNO IN  S_QTNO
                     AND QTDAT IN  S_QTDAT
                     AND QTVALDAT IN  S_QTVDAT
                     AND SONO IN  S_SONO .
          IF SY-SUBRC EQ 0.
            DESCRIBE TABLE ITAB LINES V_LINES.
            TCL1-LINES = V_LINES.
          ENDIF.
          COPIED_ONCE = 'X'.
          REFRESH CONTROL 'TCL1' FROM SCREEN '0200'.
       ENDIF.
          LOOP AT ITAB.
             QTY = ITAB-QTY.
             UPRICE  = ITAB-UPRICE.
             TOT = QTY * UPRICE .
             ITAB-TOT = TOT .
             CLEAR: QTY, UPRICE, TOT.
             QTY = ITAB-CGL_QTY.
             UPRICE  = ITAB-CGL_UPRICE.
             TOT = QTY * UPRICE .
             ITAB-CGL_TOT = TOT .
             CLEAR: QTY, UPRICE, TOT.
             QTY = ITAB-BHEL_QTY.
             UPRICE  = ITAB-BHEL_UPRICE.
             TOT = QTY * UPRICE .
             ITAB-BHEL_TOT = TOT .
             CLEAR: QTY, UPRICE, TOT.
             QTY = ITAB-ALSTOM_QTY.
             UPRICE  = ITAB-ALSTOM_UPRICE.
             TOT = QTY * UPRICE .
             ITAB-ALSTOM_TOT = TOT .
             CLEAR: QTY, UPRICE, TOT.
             QTY = ITAB-SIEMENS_QTY.
             UPRICE  = ITAB-SIEMENS_UPRICE.
             TOT = QTY * UPRICE .
             ITAB-SIEMENS_TOT = TOT .
             CLEAR: QTY, UPRICE, TOT.
             QTY = ITAB-TELK_QTY.
             UPRICE  = ITAB-TELK_UPRICE.
             TOT = QTY * UPRICE .
             ITAB-TELK_TOT = TOT .
             CLEAR: QTY, UPRICE, TOT.
             QTY = ITAB-OTH_QTY.
             UPRICE  = ITAB-OTH_UPRICE.
             TOT = QTY * UPRICE .
             ITAB-OTH_TOT = TOT .
             CLEAR: QTY, UPRICE, TOT.
             MODIFY ITAB.
          ENDLOOP.
    ENDMODULE.                 " SET_STATUS  OUTPUT
    *&      Module  SET_LINE_COUNT  INPUT
    *       text
    MODULE SET_LINE_COUNT OUTPUT.
      LINE_COUNT = SY-LOOPC.
    ENDMODULE.                 " SET_LINE_COUNT  INPUT
    *&      Module  UPD_OK_CODE  INPUT
    *       text
    MODULE UPD_OK_COD INPUT.
    IF OK_CODE = 'SAVE'.
        UPD_OK_CODE = OK_CODE.
    *    CLEAR OK_CODE.
    ENDIF.
    ENDMODULE.                 " UPD_OK_CODE  INPUT
    *&      Module  EXIT_COMAND  INPUT
    *       text
    MODULE EXIT_COMAND INPUT.
    SAVE_OK_CODE = OK_CODE.
    CLEAR OK_CODE.
    CASE SAVE_OK_CODE.
        WHEN 'BACK'.
          CALL FUNCTION 'POPUP_TO_CONFIRM'
            EXPORTING
              TITLEBAR       = 'Order Bank Entry'
              TEXT_QUESTION  = 'Do you want to Go BacK ?'
              TEXT_BUTTON_1  = 'Yes'
              TEXT_BUTTON_2  = 'No'
              DEFAULT_BUTTON = '2'
            IMPORTING
              ANSWER         = ANSWER.
          IF ANSWER = '1'.
            LEAVE TO SCREEN 0.
          ELSE.
          ENDIF.
        WHEN '%EX'.
          CALL FUNCTION 'POPUP_TO_CONFIRM'
            EXPORTING
              TITLEBAR       = 'Order Bank Entry'
              TEXT_QUESTION  = 'Do you want to Exit ?'
              TEXT_BUTTON_1  = 'Yes'
              TEXT_BUTTON_2  = 'No'
              DEFAULT_BUTTON = '2'
            IMPORTING
              ANSWER         = ANSWER.
          IF ANSWER = '1'.
            LEAVE TO SCREEN 0.
          ELSE.
          ENDIF.
      ENDCASE.
    ENDMODULE.                 " EXIT_COMAND  INPUT
    *&      Module  UPDATE_MOD  INPUT
    *       text
    MODULE UPDATE_ITAB INPUT.
        MODIFY TABLE ITAB FROM ITAB.
    ENDMODULE.                 " UPDATE_MOD  INPUT
    *&      Module SCROLL INPUT
    *       text
    MODULE SCROLL_SORT INPUT.
    SAVE_OK_CODE = OK_CODE.
    CLEAR OK_CODE.
    CASE SAVE_OK_CODE.
      WHEN 'P--'.
          TCL1-TOP_LINE = 1.
      WHEN 'P-'.
          TCL1-TOP_LINE = TCL1-TOP_LINE - LINE_COUNT.
          IF TCL1-TOP_LINE LE 0.
             TCL1-TOP_LINE = 1.
          ENDIF.
      WHEN 'P+'.
          I = TCL1-TOP_LINE + LINE_COUNT.
          J = TCL1-LINES - LINE_COUNT + 1.
          IF J LE 0.
             J = 1.
          ENDIF.
          IF I LE J.
             TCL1-TOP_LINE = I.
          ELSE.
             TCL1-TOP_LINE = J.
          ENDIF.
      WHEN 'P++'.
          TCL1-TOP_LINE = TCL1-LINES - LINE_COUNT + 1.
          IF TCL1-TOP_LINE LE 0.
              TCL1-TOP_LINE = 1.
          ENDIF.
      WHEN 'SORTUP'.
          READ TABLE TCL1-COLS ASSIGNING <FS_TCL1> WITH KEY SELECTED = 'X'.
          IF SY-SUBRC = 0.
              SPLIT <FS_TCL1>-SCREEN-NAME AT '-' INTO HELP FLDNAME.
              SORT ITAB ASCENDING BY (FLDNAME).
          ENDIF.
      WHEN 'SORTDN'.
          READ TABLE TCL1-COLS ASSIGNING <FS_TCL1> WITH KEY SELECTED = 'X'.
          IF SY-SUBRC = 0.
              SPLIT <FS_TCL1>-SCREEN-NAME AT '-' INTO HELP FLDNAME.
              SORT ITAB DESCENDING BY (FLDNAME).
          ENDIF.
      ENDCASE.
    ENDMODULE.                 " USER_COMMAND  INPUT
    *&      Module  TABL_UPD  INPUT
    *       text
      MODULE UPDATE_TABLE INPUT.
       CASE UPD_OK_CODE.
       WHEN 'SAVE'.
         UPDATE ZSD_TABL_ORDBANK FROM TABLE ITAB .
         IF SY-SUBRC EQ 0.
             MESSAGE I002(ZQOTBANK) .
             CLEAR  UPD_OK_CODE.
         ELSE.
             MESSAGE E003(ZQOTBANK) .
         ENDIF.
       ENDCASE.
      ENDMODULE.                 " TABL_UPD  INPUT
    Thnx
    moni<b></b><b></b>
    Message was edited by: md monirujjaman
    Message was edited by: md monirujjaman

    Hi Moni,
    The problem as I had replied in your earlier post is with the MODIFY statement.
    MODIFY TABLE ITAB FROM ITAB. This statement will do the modifications based on the table key. When you have character fields as editable, then some problems are to be anticipated. In such a scenario, you must update the internal table based on the <i>index</i>, rather than based on <i>key</i>.
    So consider using
    MODIFY ITAB FROM ITAB INDEX TCL-CURRENT_LINE.
    Where TCL is the name of the Table Control. Also observe the difference in syntax here, don't use the TABLE keyword for the MODIFY statement.
    Please try it out and let me know.
    Regards,
    Anand Mandalika.

  • Nokia 5220 WHITE SCREEN PROBLEM *Help plz*

    hello guys ... my phone's (5220) screen has gone White ... !! i have absolutely no idea what the problem is ! i took out the battery and put it back again .. but when i turn it on ..after the nokia logo the screen goes white again !! i cant do anything except for looking at the white screen...! the phone doesnt even turn off until you take out the battery !
    I tried to connect it to my PC (via data cable) but the phone does not get connected with the PC suite !!  PLZ HELP ME  !!

    Jimmyireland is right - anything that you could do yourself requires the phone to at least boot up properly, at the moment your phone is like PC with no Windows involved, it can't find its OS to start.
    The 5220 is a series 40 phone, there is facility for a forced reboot, it needs its software to be reflashed which is why you need the Nokia service point.

  • Annoying iphone problems, help plz?

    well, I'm having two annoying problems with my iphone, the first is that when I record a video or a photo, it does not save and the second is that it does not appear as a removable drive on the pc, SOMEBODY HELP ME PLZ :/

    You should try to restore the iPhone using iTunes make sure you back up, see if it helps.
    iPhones won't show as removable device if you are referring to be able to copy/transfer files similar to a usb flash drive. It is restricted based on Apple's specification altho it should appear as "Digital Camera Device" having access to your captured photo's or "camera roll" you should unlock your iPhone first before connecting to PC or Mac if you do have a password.
    As of saving issues, try to restore the firmware by itunes or resetting through iPhone settings as reset or restore.
    It should fix and work as normal, if it doesnt you can always go back from where you purchased it but it will. Goodluck.

  • WRH54G linksys setup problem help plz

    i just bought the WRH54G linksys wireless-G home router. I put the cd rom in and i followed every step and i have everything in the right place but when it is at step 9 when u have to choose between DHCP, PPPoE, or Static Ip i dont know which one to choose so i go with DHCP then step 10 after i put in the passwords and click next and it is checking internet connection it says the router is not able to connect to the internet. try turning cable/dsl modem off and back on again. do you want to try again?. that is where i get stuck and i have tried to turn it off and back on again and i doesnt work. can anyone help me out?

    I HAVE A DSL .. ROUTER PROBLEM
    STAYS IN STEP 9 AS WELL .. 
    checking internet connection it says the router is not able to connect to the internet. try turning cable/dsl modem off and back on again. do you want to try again?
    after some research am going to try to put MY MODEM in brigde Mode. maybe that'll fix the problem... Since it apears the linksys WRH54G is trying to connect to the internet DIRECTLY...  i dont knoe .... first time newbe  , i have a high level of computer experties.. but am having pro with dis NAW 25$ discounted outer.lol
    I have DSL from verizon... in there instusction on how to.. the first thing is to put the MODEM that they issued A WESTELL into brigde mode .. and setup..
    if anione gat this thing working after u gat this CANT CONECT TO INTERNET
    the router is not able to connect to the internet. try turning cable/dsl modem off and back on again. do you want to try again?
    please e-mail me with anifinding..
    .thanks in advance

  • Annoying podcast problem help plz

    hi guys,
    first if this is in the wrong place, i apologise, as you can see a new user.
    anyway, heres my problem,
    i just got hold of an ipod mini, and i use my itunes extensively for podcast listening,and i have a problem regarding when it comes to syncing them with my ipod.
    basically i would like my ipod to put any podcast that is listed as new in itunes on my ipod when i connect it.
    and yes it does that fine.
    but what problem i have is, when i come to syncing again, it will get the new ones ok, but it will remove all the ones previously put on there, and its annoying, as there are some i have not listened to yet.
    is there a setting were i can get my ipod/itunes to put all new podcasts on automatically, but leave them on until i decide to remove them.
    i have tried all the settings in the ipod/podcast settings, but none do that.
    so any help guys appreciated.
    is there a way to get my new podcasts on my ipod, but leave the others on.(and then what would be the easiest way to remove them when i do want them off??)

    You should try to restore the iPhone using iTunes make sure you back up, see if it helps.
    iPhones won't show as removable device if you are referring to be able to copy/transfer files similar to a usb flash drive. It is restricted based on Apple's specification altho it should appear as "Digital Camera Device" having access to your captured photo's or "camera roll" you should unlock your iPhone first before connecting to PC or Mac if you do have a password.
    As of saving issues, try to restore the firmware by itunes or resetting through iPhone settings as reset or restore.
    It should fix and work as normal, if it doesnt you can always go back from where you purchased it but it will. Goodluck.

  • Displaying problem Help Plz !!!

    Hi all
    For some reason i cant seem to get any applets to run on my computer, they just wont show up, if any one could help, sorry now if i am in the wrong room for this
    Thanks

    Go tp this Sun website http://java.com and click on Verify Installation. If it does not verify that Java is installed, try clicking on the install arrow, and start an install. If you have any problems, review the help pages there.

  • IPod Problems help PLZ

    i have a 80gb classic and it just stopped working all of a sudden. When i turn it on all it does is go to the apple logo and turn off. When i try to connect it to my computer it doesnt reconize it. what should i do.
    Please help

    Hello OZ1989,
    And welcome to Apple Discussions!
    With the iPod hooked up, I would try putting the iPod into [Disk Mode|http://support.apple.com/kb/HT1363] to help the iPod stay powered on and mounted in Windows "My Computer" as an external drive. If you are able to get it to stay mounted, I would attempt to reformat the iPod using the tools provided by Windows, and then [Restoring|http://support.apple.com/kb/HT1339] the iPod via iTunes.
    Here are instructions on how to reformat your iPod.
    http://www.methodshop.com/gadgets/ipodsupport/erase/index.shtml
    Hope this helps.
    B-rock

  • MSI Neo2-FR Raid problems help plz

    ok well me and msi are not getting along...well i'm tring to install a raid-0 ...in the bios i changed it to boot raid instead of ide....then i went and made a raid 0 array...well i go to try to install windows and i press f6...then when its time to install the drivers from the floppy, it dont see the dam drivers on the floppy so i can get no further...and its weird because from the time i boot up the comp the floppy light stays lit the whole time whether there is a floppy in or not...it did not do that on my other motherboard...msi is a weird board...im ready to break it....can anyone help here

    If you can't get your floppy drive/disk to work properly with Windows Setup, you can integrate the ICH9R RAID drivers into a self-made install CD using NLITE or XP ISO BUILDER.  Both tools are easy to use and the procedure shouldn't take longer than 15-20 Minutes.

  • Big problems help plz

    Since upgrading to a MSI K8N Neo Platinum nForce3 250 (Socket 754)  and a A64 3000..the rest of my system is in sig
    i didnt think it was running that fast..and when i did a benchmark with 3d mark 01 it showed up with 17700...and that was with the gfx card overclcoked
    i tried messing about with memory timings and overclocking the rig a bit but was still far from impressed....anyway
    i bought a new heatsink/fan and a raptor grive to use for my O/S after i had put it all together and switched on the comp it just didnt boot ....all i got was one longish beep the a pause followed by another and so on .
    i tried reseating the cpu and heatsink tried the memory in different slots checked gfx card etc still nothing...
    anyway i went back to my n/force 2 and barton 2500@3200 with the same memory and gfx card i used on the A64 and it works fine....i benchmarked it with 3d mark 01 and got a score of about 16700...without the gfx card overclocked.....
    so have i got a borked mobo or borked chip the new system should be a lot faster than a barton 2500..can anyone tell me what the beep means off this mobo....
    cheers in advance for any replies Bram

    You can find BIOS beep codes at: http://bioscentral.com/beepcodes/awardbeep.htm
    It's not clear to me whether any of those apply to you...are you having a repeating long beep or is it long then short?
    Does your CPU fan appear to be running at its full speed? Did you make sure to clean off the old thermal compound fully? Is the new thermal compound applied properly? (don't use too much!)
    Have you tried clearing the CMOS? Unplug, and remove the battery for a minute or two. Try also to startup with nothing connected but the CPU, graphics card, and 1 stick of RAM. Before anyone else says it, as it seems to be the answer to end all answers for any problems in this forum, what is your power supply rated at? Not just watts but each rail...for example my PSU: 3.3v 30A 5v 38a 12V1 18A 12v2 15A
    Finally, you're not going to see much of an increase in 3dMark tests just because you're on a faster CPU. It's almost completely based off your graphics card. I have a 9800PRO that tests at about 2% faster going from 200mhz to 220mhz for example on my A64 3200+.
    Just some general ideas to try based on my recent experiences...in the last month or so I've built 3 PCs, 2 for relatives and 1 for myself. I think about every problem you can have I encountered but it was a great learning experience and a lot of fun!

  • IPad & iTunes problem, help plz?

    when I connect my iPad 2 to itunes, there are no screens showing in the apps section

    I suspect you may be using an old version of iTunes. Check to be sure you are running the most recent version. Update if necessary and try again.

  • Syncing problem help plz....

    i keep getting the "disc cannot be read from or written to" message and its really annoying i cant sync any videos

    I did it
    1st got my ipod reset completely (took 2 hrs)
    Then Uninstalled previous version of itunes, installed new one
    After dat updated my touch
    Now its working

  • Display(ma​y be hardware) problem

    Hello hp,
    as the attachment is showing, the below half of my lappy's screen is not normal. Many verticle strips with changing colour are showing there. It is happening also when i boot it in safe mode. I think it's a hardware problem. Plz reply me back.
    Some info-
    LAPTOP NAME- hp pavilion g6 1301tx(A3V67PA#ACJ)
    PURCHASE DATE - 13th july, 2012
    PURCHASED FROM - LISA {Personal Information Removed}
    {Personal Information Removed}

    This is not a place to get warranty support. This is a user to user forum. There is no attachment to the post or it has not yet cleared inspection by the moderators. From the description I think you do have a hardware problem. If you still have a warranty you need to contact official HP warranty support. If not, we can help you with repairs.

  • HP pavilion dv6 microphone not working . help please . . .

    HP pavilion dv6 microphone not working . help please . . .

    Hi,
    DV6 is a series of hundreads of models, what is yours ? To help us answer question quicker, please read this:
       http://h30434.www3.hp.com/t5/First-Time-Here-Learn-How-to/Welcome-Get-started-here/td-p/699035
    You may wat to try this first:
    1. Right click speaker icon (right hand corner)
    2. Select Microphone devices
    3. Right click Microphone
    4. Enable it
    5. Click Apply/Ok
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • HELP ME!!! PLZ I HALF SERIOUSE IPOD PROBLEMS! PLZ HELP!

    OK! I GOT MY IPOD VIDEO FROM MY FRIEND AND HE HASNT CHARGED IT IN A WHILE, AND HE DIDNT HAVE A CHARGER! SO I BOUGHT ONE AND I PLUGGED IT IN AND IT DOESNT EVEN DO ANYTHING ON THE COMPUTER! I DOWNLOADED ITUNES TWICE.....AND THE IPOD I GUESS HAS A LITTLE POWER BECAUSE IT SWITCHES FROM A DARK SCREEN WITH THE BATTERY ON IT WITH THE LIGHTNING BOLT(which i dont know what it means) AND GOES TO THE SCREEN WITH THE APPLE LOGO (also a dark screen)THEN IT GOES TO A WHITE SCREEN THAT HAS A SAD FACE IN THE IPOD AND A TRIANGLE AROUND AN EXCLAMATION POINT! I CANT FIND ANY OF THESE PROBLEMS ON THE APPLE WEBSITE. I WENT TO THE SITE AT THE BOTTOM OF THE WHITE SCREEN THAT SAYS "www.apple.com/support/ipod" IVE GONE LIKE 4 TIMES AND IT SAID TO CHARGE THE IPOD FOR ABOUT 30 MINUTES OR SO. I HAVE BEEN CHARGING IT FOR LIKE 2 AND A HALF HOURS AND NOTHING! I REALLY DONT KNOW WHAT TO DO BUT I AM TO THE POINT THAT I WANNA THROW IT AT THE WALL!!!!!!!!!!!! PLZ HELP ME PLZ!

    Please have a read the following, very likely your iPod can be solved by connecting it with a Mac computer
    Hello,
    If a sad iPod icon or an exclamation point and folder icon appears on your iPod’s screen, or with sounds of clicking or HD whirring, it is usually the sign of a hard drive problem and you have the power to do something about it now. Your silver bullet of resolving your iPod issue – is to restore your iPod to factory settings.
    http://docs.info.apple.com/article.html?artnum=60983
    If you're having trouble, try these steps at different levels one at a time until the issue is resolved. These steps will often whip your iPod back into shape.
    Make sure you do all the following “TRYs”
    A. Try to wait 30 minutes while iPod is charging.
    B. Try another FireWire or USB through Dock Connector cable.
    C. Try another FireWire or USB port on your computer .
    D. Try to disconnect all devices from your computer's FireWire and USB ports.
    E. Try to download and install the latest version of iPod software and iTunes
    http://www.apple.com/itunes/download/
    For old and other versions of iPod updater for window you can get here
    http://www.ipodwizard.net/showthread.php?t=7369
    F. Try these five steps (known as the five Rs) and it would conquer most iPod issues.
    http://www.apple.com/support/ipod/five_rs/
    G. Try to put the iPod into Disk Mode if it fails to appear on the desktop
    http://docs.info.apple.com/article.html?artnum=93651
    If none of these steps address the issue, you may need to go to Intermediate level listed below in logical order. Check from the top of the lists to see if that is what keeping iPod from appearing on your computer in order for doing the Restore.
    Intermediate Level
    A. Try to connect your iPod with another computer with the iPod updater pre-installed.
    B. Still can’t see your iPod, put it in Disk Mode and connect with a computer, instead of doing a Restore on iPod Updater. Go and format the iPod instead.
    For Mac computer
    1. Open the disk utility, hope your iPod appears there (left hand side), highlight it
    2. Go to Tab “Partition”, click either “Delete” or “Partition”, if fails, skip this step and go to 3
    3. Go to Tab “Erase” , choose Volume Format as “MAC OS Extended (Journaled), and click Erase, again if fails, skip it and go to 4
    4. Same as step 3, but open the “Security Options....” and choose “Zero Out Data” before click Erase. It will take 1 to 2 hours to complete.
    5. Eject your iPod and do a Reset
    6. Open the iTunes 7 and click “Restore”
    For Window computer
    Go to folder “My Computer”
    Hope you can see your iPod there and right click on the iPod
    Choose “Format”. Ensure the settings are at “Default” and that “Quick Format” is not checked
    Now select “Format”
    Eject your iPod and do a Reset
    Open the iTunes 7 and click “Restore”
    In case you do not manage to do a “Format” on a window computer, try to use some 3rd party disk utility software, e.g.“HP USB Disk Storage Format Tool”.
    http://discussions.apple.com/thread.jspa?threadID=501330&tstart=0
    C. Windows users having trouble with their iPods should locate a Mac user. In many cases when an iPod won't show up on a PC that it will show up on the Mac. Then it can be restored. When the PC user returns to his computer the iPod will be recognized by the PC, reformatted for the PC, and usable again. By the way, it works in reverse too. A Mac user often can get his iPod back by connecting it to a PC and restoring it.
    Tips
    a. It does not matter whether the format is completed or not, the key is to erase (or partly) the corrupted firmware files on the Hard Drive of the iPod. After that, when the iPod re-connected with a computer, it will be recognized as an fresh external hard drive, it will show up on the iTunes 7.
    b. It is not a difficult issue for a Mac user to find a window base computer, for a PC user, if they can’t find any Mac user, they can go to a nearest Apple Shop for a favor.
    c. You may need to switch around the PC and Mac, try to do several attempts between “Format” and “Restore”
    http://discussions.apple.com/thread.jspa?messageID=2364921&#2364921
    Advance Level
    A. Diagnostic mode solution
    If you have tried trouble shooting your iPod to no avail after all the steps above, chances are your iPod has a hardware problem. The iPod's built-in Diagnostic Mode is a quick and easy way to determine if you have a "bad" iPod.
    You need to restart your iPod before putting it into Diagnostic Mode. Check that your hold switch is off by sliding the switch away from the headphone jack. Toggle it on and off to be safe.
    Press and hold the following combination of buttons simultaneously for approximately 10 seconds to reset the iPod.
    iPod 1G to 3G: "Menu" and "Play/Pause"
    iPod 4G+ (includes Photo, Nano, Video, and Mini): "Menu" and "Select"
    The Apple logo will appear and you should feel the hard drive spinning up. Press and hold the following sequence of buttons:
    iPod 1G to 3G: "REW", "FFW" and "Select"
    iPod 4G+ (includes Photo, Nano, Video, and Mini): "Back" and "Select"
    You will hear an audible chirp sound (3G models and higher) and the Apple logo should appear backwards. You are now in Diagnostic Mode. Navigate the list of tests using "REW" and "FFW". The scroll wheel will not function while in diagnostic mode. For further details on Diagnostic mode can be found at http://www.methodshop.com/mp3/ipodsupport/diagnosticmode/
    Try to do the 5in1, HDD R/W and HDD scan tests. Some successful cases have been reported after the running the few tests under the Diagnostic mode. In case it does not work in your case, and the scan tests reports show some errors then it proves your iPod has a hardware problem and it needs a repairing service.
    B. Format your iPod with a start disk
    I have not tried this solution myself, I heard that there were few successful cases that the users managed to get their iPod (you must put your iPod in disk mode before connecting with a computer) mounted by the computer, which was booted by a system startup disk. For Mac, you can use the Disk Utility (on the Tiger OS system disk), for PC user, you can use the window OS system disk. Try to find a way to reformat your iPod, again it does not matter which format (FAT32, NTFS or HFS+) you choose, the key is to erase the corrupted system files on the iPod. Then eject your iPod and do a Reset to switch out from Disk Mode. Reboot your computer at the normal way, connect your iPod back with it, open the iPod updater, and hopefully your iPod will appear there for the Restore.
    If none of these steps address the issue, your iPod may need to be repaired.
    Consider setting up a mail-in repair for your iPod http://depot.info.apple.com/ipod/
    Or visit your local Apple Retail Store http://www.apple.com/retail/
    In case your iPod is no longer covered by the warranty and you want to find a second repairing company, you can try iPodResQ at your own risk
    http://www.ipodresq.com/index.php
    Just in case that you are at the following situation
    Your iPod warranty is expired
    You don’t want to pay any service charges
    You are prepared to buy a new one
    You can’t accept the re-sell value of your broken iPod
    Rather than leave your iPod as paper-weight or throw it away.
    You can try the following, but again, only do it as your last resort and at your own risk.
    Warning !!!! – It may or may not manage to solve your problem, and with a risk that you may further damage your iPod, which end up as an expensive paper weight or you need to pay more higher repairing cost. Therefore, please re-consider again whether you want to try the next level
    Last Resort Level
    1. . Disconnecting the Hard Drive and battery inside the iPod – Warning !! Your iPod warranty will be waived once you open the iPod.
    In Hong Kong there are some electronic shops offering an iPod service for Sad iPod, the first thing they do is to open up the iPod’s case and disconnecting the battery and the Hard Drive from the main board of the iPod. Wait for 5-10 minutes and reconnecting them back. The reason behind which I can think of is to do a fully reset of a processor of the iPod. In case you want do it itself and you believe that you are good on fixing the electronics devices and have experience to deal with small bits of electronic parts, then you can read the following of how to open the iPod case for battery and HDD replacement (with Quicktimes)
    http://eshop.macsales.com/tech_center/index.cfm?page=Video/directory.html
    2.Press the reset button on the Hard Drive inside the iPod – Suggestion from Kill8joy
    http://discussions.apple.com/thread.jspa?messageID=2438774#2438774
    Have I tried these myself? No, I am afraid to do it myself as I am squeamish about tinkering inside electronic devices, I have few experiences that either I broke the parts (which are normally tiny or fragile) or failed to put the parts back to the main case. Therefore, I agree with suggestion to have it fixed by a Pro.
    2. Do a search on Google and some topics on this discussion forum about “Sad iPod”
    Exclamation point and folder and nothing else
    http://discussions.apple.com/thread.jspa?messageID=2831962#2831962
    What should I do with my iPod? Send it or keep it?
    http://discussions.apple.com/thread.jspa?threadID=469080&tstart=0
    Strange error on iPod (probably death)
    http://discussions.apple.com/thread.jspa?threadID=435160&start=0&tstart=0
    Sad Face on iPod for no apparent reason
    http://discussions.apple.com/thread.jspa?threadID=336342&start=0&tstart=0
    Meeting the Sad iPod icon
    http://askpang.typepad.com/relevanthistory/2004/11/meeting_thesad.html#comment-10519524
    Sad faced iPod, but my computer won’t recognize it?
    http://discussions.apple.com/thread.jspa?messageID=2236095#2236095
    iPod Photo: unhappy icon + warranty question
    http://discussions.apple.com/thread.jspa?messageID=2233746#2233746
    4th Gen iPod Users - are we all having the same problem?
    http://discussions.apple.com/message.jspa?messageID=2235623#2235623
    Low Battery, and clicking sounds
    http://discussions.apple.com/thread.jspa?messageID=2237714#2237714
    Sad faced iPod, but my computer won’t recognize it
    http://discussions.apple.com/thread.jspa?messageID=2242018#2242018
    Sad iPod solution
    http://discussions.apple.com/thread.jspa?threadID=412033&tstart=0
    Re: try to restore ipod and it says "can't mount ipod"
    http://discussions.apple.com/thread.jspa?threadID=443659&tstart=30
    iPod making clicking noise and is frozen
    http://discussions.apple.com/thread.jspa?messageID=2420150#2420150
    I am not suggesting that you should follow as well, but just read them as your reference. You are the person to make the call.
    Finally, I read a fair comments from dwb, regarding of slapping the back of the iPod multiple times
    Quote “This has been discussed numerous times as a 'fix'. It does work, at least for a while. In fact I remember using the same basic trick to revive Seagate and Quantam drives back in the mid to late 1980's. Why these tiny hard drives go bad I don't know - could be the actuator gets stuck in place or misaligned. Could be the platter gets stuck or the motor gets stuck. 'Stiction' was a problem for drives back in the 80's. Unfortunately the fix can cause damage to the platter so we temporarily fix one problem by creating another. But I know of two instances where a little slap onto the table revived the iPods and they are still worked a year or more later.”UnQuote

Maybe you are looking for

  • Can I use multiple sa-ns500 on the same network?

    Is it possible to use multiple sa-ns500 speakers on the same network?  they seem to want to have the same name on the network and therefore only 1 will connect at a time?  Can I rename one somehow?  Thanks!

  • Report to display on web

    Hii i got a requirement to display a some MIS report on the web in ABAP whenever report get's executed it is displaying in excel sheet the requirement is display on web as well. is it possible using BSP application? send some suggestions on this issu

  • In PSE 9 how do I add slides to a saved slide show

    In PSE 9 How do I add slides to a saved slide show?

  • One user accounts hung up, all others fine

    i am running an imac g5 (1.8 ghz) w/ 1.5gb ram. just upgraded to 10.4 last month with no problem. i run 4 accounts on the machine. one of the accounts is expereincing extremeley slow click reaction and application launch speed speeds. like 5 minutes

  • Problems about airplay and apple tv

    Hello, I currently have two terminals wifi ssid with two different "alexmario" and "numericable" and are on the same network. when I activate "airplay" and my "Apple TV" is ethernet, I the "airplay" broadcast on one of my wi-fi "alexmario" on my ipho