Ipod Sorting Problem!!!! PLZ HELP

Before my ipod use to display artists from 1,2,3 to Z
but now it displayes them from A-Z Then 1,2,3
this is really bothering me.. how do i fix this?
  Windows XP  

I believe this is a result of the new iTunes 7.3 software. I am going to try to uninstall this than reinstall the old version 7.2.something, perhaps that will help.

Similar Messages

  • 1st gen ipod touch problem. plz help

    hey guys, for awhile now, my itouch been dead. last year in feb, i accidently spilled some water on my itouch and it died. acouple months later, it came back to life and been working like new ever since as if nothing ever happen. now it recently just died again. i dnt know whats wrong with it. ill try to charge it on my ihome or with the wall charger and nothing. i try connecting it to the comp but nothng happens aswell. even if i hold on the home and the top button, it does nothing. but wen im charging it, and holding the home and top button, the apple icon comes on the screen and thats it. after that it dies again. do you guys have anything idea whats wrong with my itouch? would it be that the battery is dead or could something have been burnt on the inside.

    Troubleshooting iTouch hardware issues is difficult unless you can open up the case and an expert manages the diagnosis and repair. Especially after potential water damage, which seems likely.
    You have several options. You can contact Apple, and they will be able to determine the repairs and probable cost. Personally, I've had very good luck with http://www.ipodjuice.com/apple-ipod-touch-repair.htm, thanks to their reasonable prices and good results. But there's very little that you can do yourself, regrettably.

  • Audio Clip problem plz help..

    There is some problem with my code. It is actually for simply playing a wav file.
    It gives errors on two lines....
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    import javax.swing.*;
    public class MediaPlayerDemo extends JFrame
         AudioClip clip; //Error Here
         public MediaPlayerDemo(String title)
              super(title);
         clip = getAudioClip(getCodeBase(),"access.wav"); //Error Here
         clip.loop();
         public static void main(String args[])
              MediaPlayerDemo m = new MediaPlayerDemo("Title");
              m.setSize(400,400);
              m.setVisible(true);
    }

    "Audio Clip problem plz help"
    You have to learn to help yourself.
    Have you done anything to try to fix the errors yourself?
    AudioClip clip; //Error Here
    the error generated here is self-explanatory.
    if you can't fix this, you should get a good book on java basics and start again.
    the other error is also easy to fix.

  • Classpath problem plz help me

    hi!
    i am unable to run my RMI server program .Name of My server class is SumServer.java,it implements SumInterface.java all the files(.class,.java and stub) are at location c:\javaprog\rmi\sum.
    I have not put them in any package.
    value of classpath is
    classpath=c:\jdk1.4\lib;.;c:\javaprog\rmi\sum
    i go in sum folder and run the program
    c:\javaprog\rmi\sum > SumServer
    it gives me following exception.plz help me out.
    Thx in advance.
    Exception occur.Unable to register serverjava.rmi.ServerException: RemoteExcepti
    on occurred in server thread; nested exception is:
    java.rmi.UnmarshalException: error unmarshalling arguments; nested excep
    tion is:
    java.lang.ClassNotFoundException: SumServer_Stub

    Deepa lakshmi wrote:
    Hi,
    Am new to weblogic.
    Am using the tools are,
    Weblogic8.1 version
    MySql5.0,mysql-connector-java-3.1.12-bin.jar file
    While test configuration of connection pooling am getting the error is "JDBC Driver is not on the classpath".
    How can i solve this problem
    plz help me
    regards
    DeepaEdit the start-weblogic script. Near the bottom, you will see
    lines that create a CLASSPATH for the weblogic server. Add a
    script line that adds the mysql driver to the classpath there.
    Joe

  • IPod Touch 4g Battery Problem Plz Help

    I will plug my iPod touch in before I go to bed each night and it has been working fine since Ive had it shipped to me about a year now. But the past two nights I plug it in and in the morning it says 20% battery remaining. When I plug it in it says it's charging with the battery charging icon and everything. So I tried plugging it in to my computer USB and it worked and got past 20% but I have never seen it at 100% ever since two nights ago. My other iOS devices like my iPad charge perfectly fine on the same wall charger I use with my iPod. Is something wrong with my iPod touch 4th generation battery! Plz help Thanks for reading.

    Sorry to hear that.
    If you set it up "as new" without using the latest backup afterwards and the battery life did not get better, you'll have to get it serviced or make an appointment at your next Apple Store. Maybe your battery is damaged.
    You can check your warranty status here: Apple - Support - Check Your Service and Support Coverage

  • Ipod 5 charger problems plz help

    hey my ipod 5 is chargig but it wont show the charge sign and it charges very slow. how can i bring back the charge sign without restarting or buting a new charger plz help thnx.

    Not Charge
    - See:      
    iPod touch: Hardware troubleshooting
    - Try another cable. Some 5G iPods were shipped with Lightning cable that were either initially defective or failed after short use.
    - Try another charging source
    - Inspect the dock connector on the iPod for bent or missing contacts, foreign material, corroded contacts, broken, missing or cracked plastic.
    - Make an appointment at the Genius Bar of an Apple store.
      Apple Retail Store - Genius Bar 

  • Sorting problem PLZ Hellp Me

    hi all
    i had a problem to be solved but i am unable to get any idea on it
    my problem is
    i had some directiories with names as MONYEAR
    i.e JAN2004,SEP2004,AUG2004 ,JUL2004 etc.............
    these dirs are created programetically for storing that perticular months files in that dir only
    now my problem is
    i wan to dislay these DIRs in a sorted order according to MONYEAR order ie JAN2004,JUL2004,AUG2004,SEP2004 like that
    i had no idea how to do it in a simple way
    i was new to java
    anybody could PLZ help me how to do it
    if so plz provide me some sample code
    thanks all

    here's a 'novel' approach
    import java.util.*;
    import java.text.SimpleDateFormat;
    class FolderDateSort
      public FolderDateSort()
        ArrayList folderName = new ArrayList(Arrays.asList(new String[]{
          "MAR2004","JAN2004","AUG2004","DEC2004","FEB2004","MAR2003","SEP2004"}));
        Comparator comp = new MyComparator();
        Collections.sort(folderName,comp);
        for(int x = 0; x < folderName.size(); x++)System.out.println(folderName.get(x));
      public static void main(String[] args){new FolderDateSort();}
    class MyComparator implements Comparator
      public int compare(Object o1, Object o2)
        SimpleDateFormat sdf1 = new SimpleDateFormat("MMMyyyy");
        SimpleDateFormat sdf2 = new SimpleDateFormat("yyyyMM");
        Calendar cal1 = Calendar.getInstance();
        Calendar cal2 = Calendar.getInstance();
        try
          cal1.setTime(sdf1.parse((String)o1));
          cal2.setTime(sdf1.parse((String)o2));
        catch(Exception e){e.printStackTrace();}
        return (sdf2.format(cal1.getTime())).compareTo(sdf2.format(cal2.getTime()));
    }

  • Big Problem, PLZ HELP

    So, when i click on the itunes shortcut, which has the same icon as the Apple Software Updater, I get a box that says that iTunes has encountered a problem and needs to close. We are sorry for the inconvenience. I hit send once and sent the error report, and then restarted my computer to see if that would help. It didnt, so, now i cant access itunes this is a major problem cause i have all my songs on this computer. I also tried to plug in my ipod and see if that would make it load.
    I installed iTunes 7.0 on my laptop, the exact same way, and i works on my laptop, but not on my computer.
    PLZ HELP ME

    ok this is what i did when that happened to me. i uninstalled quicktime then went here: http://www.apple.com/quicktime/win.html and reinstalled the latest version :0)

  • IPod Mini Problems Please Help

    This is my second post of the type... no one replied to that so im hoping someone could help me.
    Problems:
    -Wont Update or Load Songs
    -It starts loading, gets to around the 5th song (out of well over 600) and says "Ipod Update Complete, OK To Disconnect" though nothing is on the iPod.
    -Occasionally wont restore to factory settings.
    Okay, before you suggest the five R's, ill note that ive put several MONTHS into this, and ive tried them well over 20 times in order.
    Things Tried
    -5 R's Repeatedly (as noted above)
    -updating on a friends computer (several times with no luck, same problems)
    -requested help over the phone
    -The number i called was the Apple US Help Line, which the person helped me for about an hour before he said he did not know what was up, and transfered me to the Canadian help line, where they demanded a large sum for help, which i could not pay (under 18).
    -When i first noticed the problems, I sent it in (around the end of december)and problems continued upon arrival of the new mini.
    I will also note that my sisters iPod Nano works perfectly fine, no problems, as well as my friends iPods adding songs from my computer.
    Please please help... im currently resorting to a crappy CD player that skips for my music... and have been... its starting to break me inside.
    Thank you,
    Milan

    Natalie,
    If you have your iPod set to transfer your music manually, then that “do not disconnect” message will continue to be displayed on your iPod until you manually eject it.
    You can do this by clicking on the little eject icon next to the iPod listing in the source window of iTunes, or right click on it and select “eject”. Another way would be to use the “safely remove hardware” icon in the system tray next to the clock (looks like a grey rectangle with a green arrow above it). Click on this then select your iPod. Or through Windows, select start/my computer, right click on the iPod, select eject.
    If you have your iPod set to automatically sync with iTunes, right click on the iPod in iTunes, select options and if you have a check mark in the box marked “enable disk use”, remove it and your iPod should automatically disconnect after it’s finished transferring music.
    For the iPod to automatically open iTunes, you have to have "open iTunes when this iPod is attached" checked.
    Go to edit/preferences/iPod to do this.
    If you prefer to keep the iPod set to manual transfer, look at this. In fact, the whole tutorial is a must read.
    Managing Your Songs Manually
    iPod Tutorial
    iTunes Tutorial Windows

  • All my songs are gone from the ipod!! PLZ HELP!!!!!!!!

    Ok.
    So i was putting some new songs on my iPod 20 GB, the one before the colour screen came. the operation hung itself up, for the first time. everything worked well with the ipod when i hooked it off. then i put it on again, and nothing worked. and now there are NO songs on the ipod, BUT i do not believe they are deleted, because both the ipod AND itunes says only 90 MB free space. but when i go on it on my harddrive, and try to check the music files on the ipod, all the folders are in strange chinese-like language, and i can't open anything!
    PLZ, any advice? i CAN'T LOOSE MY MUSIC!! PLZ HELP!!!
    Windows XP    

    I am really desperate, can't somebody please help?

  • IPod/iTunes problem. Help!

    I'm going to make it simple.
    Last week my G5 crashed and Darwin came up asking for login. This stank but I got it fixed and now my computer is up and running. But now I am having a problem with iTunes.
    I want to update my iPod because I have new thing to put on it and it shows up on my desk top but not in iTunes.
    I have tried alot of things to try and fix it but nothing seems to be working. I need this fixed. Can anyone help me out? Do I need to update my OS? I don't see why because my iPod worked perfectly when I got it.
    Poawer Mac OS X G5   Mac OS X (10.3.2)   Adobe, iPod, iLife '04

    Trying to help you here.
    http://discussions.apple.com/message.jspa?messageID=4431703#4431703

  • Problem PLZ Help me

    Hi Guys,
    I have a problem to make a developer application Client/Server.
    When i install forms Runtime on the Client`s computer and i open the application, i get the error that he can`t find the menu and the libraries.
    The menu path is for example on my computer F:\s3\Salesmenu
    But on the client it can be a different path an then he can`t find the menu.
    Now the properties for the main form are:
    Menu module f:\s3\Salesmenu
    Initial menu Salemenu
    Does anyone know how to fix this problem for example:
    1) by let the program search for the menu.
    2) .....
    Plz Help
    Vincent

    set your FORMS60_PATH on the client to Formspath;libpath;menupath so it looks in every dir named in the path.

  • My i phone ringer is giving me a lot of trouble. It does not play any sound or music, the incoming call ringtone is working, but no music is playing. The problem itself disappears , and then reoccurs again. Anybody with same kind of problem, plz help !!!

    the iphone ringer is not working, the incoming call ringtones are playing , but ringer volume bar has disappeared. The problem itself gets fixed at times but i'm having a real tough time . I have almost tried evrything from resetting the phone, switiching it off and do it gain, but nothing seems to work. A nybody with anykind of knowledge reguarding this problem, please help!!

    Unfortunately, this is not Apple, but just the iPod Community forum, of iPod Classic end users, who shares your angst. You can post it to iPod Feedback

  • Nokia n79 problem Plz Help!

    Hello!My nokia just stuck,or hang in(i dont now english good) but i cant do enything.Evry button just dont work only at start when i write my pi(and somethimes then too).Works only power button.Its weard.Plz help.Somethimes a whole day are no problems somhetimes a whol day.

    hey ivee n everyone else .. i'm facing the same problem.. n i need to fix this problem myself..
    my n79 gets hang constantly nowadays.. i've used this phone for 1 year plus now so warranty's no more..... none of the buttons on the keypad works when it gets hang.. onli the power button is functioning.. now it's gettin worse .. it even hangs before i insert my pincode... i cant sms, call , or anything.. it hangs after i pressed a few buttons..
    so ivee u've fixed ur n79 youself right..? umm.. can u explain to me wat a smallboard is? is that the board at the lower part of the keypad where u can see buttons underneath the white layer? and is that board expensive?
    pls reply asap anyone.. urgent

  • N79 hanging problem plz help....

    while unlocking the keypad of my n79 sometimes the phone gets hanged then i have to take the battery out and then again switch on the phone........plz help me how to get rid of this problem???

    I have also same problem with my Nokia N79, I just cancelled sensor for automatic themes from cover. Just open back cover & stick some paper or plastic cello tape on four hole marks of covers wich r sensor for automatic themes to change colour of back cover same as theme colour. From 2 days I feel my mobile working fine without hanging ! so try it, all the best.

  • Bluetooth connection problem plz help...

    hi everyone, just bought a new pearl 9105. everything works fine and even bluetooth... through which i can transfer data from blackberry to other mobiles(samsung,sony ericsson)... but the problem is i could not recieve data from other mobiles.i should get contacts list from the other mobiles... but due to this problem i couldnt. plz help me out..

    The best way to receive a file from another device via bluetooth is to go to Media, then press Menu, choose Receive Using Bluetooth, waiting for connection will be display, then send from the other device. It should work without hassle.

Maybe you are looking for

  • Upgrade from Panther to Tiger or Panther to Leopard

    I'm operating a Powerbook 15" with a 1.33 G4 and 256MB RAM. I believe the specs for Leopard call for 512MB RAM. The question I have is, am I better off going with Leopard and upgrading the RAM or should I just go with Tiger and upgrade the OS? A litt

  • Is there a way to monitor a remote location using a video device?

    I was wondering if there was a way to monitor our vacation home while we are away? Do I need a computer at the remote location and does it have to be on all of the time? All I have there is a dial up connection. Here I have a cable connection. Is the

  • ITunesSetup.exe not a Win32 App??

    I have downloaded the latest version of iTunes but when I try to run the installer I get this message: "iTunesSetup.exe is not a valid Win32 Application" I cant run my new iPod on my old version and am frustrated! Dell   Windows XP  

  • Storage location mandatory

    Dear Experts, Could you please inform to make Storage Location field has mandatory in Purchase Order for the User ID. Since it is a Client level I do not want to disturb for any other company code or plants. And also I want to make Plant mandatory wh

  • Multiple transport vendor.

    Hi We maintain a scheduling Agreement for a sub contracting item having planned delivery costs, After processing Sub contractor sends us the semi finished goods against SA either through Transporter A, B or C, Only after the goods’ reaches our plant