Can't find my Nano's name on Source Panel in i-Tunes

I inadvertently locked the volume on my nano and need to restore it. However the name doesn't appear on the Source Panel in i-Tunes. How do I get to the Summary Tab to proceed with the restoration process so I can finally hear the songs?

See if any of these articles help.
USB drivers are not installed properly or are out of date.
iTunes 7 doesn't recognize the iPod.
iPod appears in Windows Explorer but does not appear in iTunes.
iPod does not appear in iTunes.
Fast user switching in Windows XP is not supported.
Windows confuses iPod with network drive

Similar Messages

  • Mobile 3.1 can't find bundle for base name labels

    Hi all.
    I installed the Business Objects Mobile 3.1 few days ago on a dedicated server without using proxy server because the installation is in test mode with no external access. Both products (BO Enterprise XI3.1 & BO Mobile 3.1) are installed on separate Windows Server 2003 machines. The installation has the default database (Apache Derby) and both services (VAS & VMS) are working. The mobile device is a virtual device on my PC using Windows Mobile 6.1 operating system.
    The client application has been installed on mobile device and users can succesfully log on to the CMS using Enterpise Authentication method. After this two folder icons are displayed on screen, first for Local Documents and second for Server Documents. Clicking the Server Documents the following error message is displayed on screen "Can't find bundle for base name labels, locale el_GR (0x15)"
    I tried to resolve the problem changing the regional settings from Greek to US in servers, my PC and Virtual Device but the exact error still appears. Does anybody knows what to do or where to look for a solution?
    Thanks for reading my message. Happy and creative new year for all.

    Here is my suggestion.
    Do you have the property file named "webui-resources_en_US.properties"?
    Here is the example
    language="en"
    country="US"
    locale = new Locale(language, country);
    bundle = ResourceBundle.getBundle("com.<companyname>.webui-resources");
    copy the webui-resources_en_US.properties file to the directory
    com.<companyname> in your workspace/IDE/localdirectory. or ftp that file to classes/com/companyname directory
    This should work. I am using it that way.
    which appserver r u using?

  • Can't find bundle for base name... and selectOne tags

    I have a problem. I have a little application with internationalization working very well. But when i introduce a selectOneMenu tag i get the following error:
    javax.servlet.ServletException: javax.servlet.jsp.JspException: Can't find bundle for base name MessageBundle, locale en
         org.apache.jasper.runtime.PageContextImpl.doHandlePageException(PageContextImpl.java:821)
         org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:758)
         org.apache.jsp.pages.default_jsp._jspService(default_jsp.java:121)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:94)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:324)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:322)
         com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:130)
         com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:87)
         com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:200)
         com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:117)
         javax.faces.webapp.FacesServlet.service(FacesServlet.java:198)
         org.apache.jasper.runtime.PageContextImpl
    When I take off the selctOneMenu tag and every thing work well again.
    the code of the page is the following:
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
    <f:loadBundle basename="localizations.MessageBundle" var="bundle"/>
    <html>
    <head>
    <title></title>
    </head>
    <body>
    <f:view>
    <%@ include file="/pages/includes/header.jsp" %>
    <h:selectOneMenu>
         <f:selectItems value="#{pruebaBean.condiments}"/>
    </h:selectOneMenu>
    </f:view>
    </body>     
    </html>
    The pruebaBean code is the following:
    public class PruebaBean {
         private Map condiments = null;
         public Map getCondiments() {
         if(condiments == null) {
         condiments = new HashMap();
         condiments.put("Cheese", new Integer(1)); // key,value
         condiments.put("Pickle", new Integer(2));
         condiments.put("Mustard", new Integer(3));
         condiments.put("Lettuce", new Integer(4));
         condiments.put("Onions", new Integer(5));
         return condiments;
         public PruebaBean() {
         public void setCondiments(Map condiments) {
              this.condiments = condiments;
    The MessageBundle work well, the problem i think is something with the selectOneMenu.
    Help me please.

    a) You can't use map for that purpose.
    b) You have to create SelectItem objects
    c) If you return an array of selectItem on this method condiments, it will go ok.

  • Can't Find Bundle for Base name

    Please help! I've tried just about everything!!!
    Error:
    Exception in thread "main" java.util.MissingResourceException: Can't
    find bundle for base name Messages2/Messages2, locale
    java.util.ResourceBundle.throwMissingResourceException(ResourceBundle.java:1508)
    java.util.ResourceBundle.getBundleImpl(ResourceBundle.java:1262)
    at java.util.ResourceBundle.getBundle(ResourceBundle.java:789)
    com.hypefiend.javagamebook.games.rps.RPSClient.main(RPSClient.java:55)
    Java Result: 1
    package com.hypefiend.javagamebook.games.rps;
    import com.hypefiend.javagamebook.client.*;
    import com.hypefiend.javagamebook.common.*;
    import java.nio.*;
    import java.nio.channels.*;
    import java.util.*;
    import java.net.*;
    import java.io.*;
    import org.apache.log4j.*;
    public class RPSClient extends GameClient {
        /** log4j logger */
        protected static Logger log = Logger.getLogger("RPSClient");
        /** reference to ConsoleEventReader that reads events from user input */
        protected RPSConsoleEventReader consoleReader;
         * main.
        public static void main(String args[] ) {
         // setup log4j
         BasicConfigurator.configure();
         if (args.length < 2) {
             System.out.println("usage: java com.hypefiend.javagamebook.games.rps.RPSClient <host> <player_name>\n");
             System.exit(0);
          String language;
            String country;
            if (args.length != 2) {
                language = new String("en");
                country = new String("US");
            } else {
                language = new String(args[0]);
                country = new String(args[1]);
            Locale alocale;
            ResourceBundle mesg;
            alocale = new Locale(language, country);
            mesg= ResourceBundle.getBundle("src/com/hypefiend/javagamebook/games/rps/Messages2/Messages2",
                                               alocale);
        // fire up the client
         RPSClient gc = new RPSClient();
         gc.init(args);
         gc.start();
         * call GameClient.init()
         * and start our ConsoleEventReader
        public void init(String args[]) {
         super.init(args);
         consoleReader = new RPSConsoleEventReader(this, inQueue, outQueue);
         consoleReader.start();
         * shutdown the client
        protected void shutdown() {
         consoleReader.shutdown();
         super.shutdown();
         * handle incoming GameEvents from the EventQueue
        protected void processIncomingEvents() {
         GameEvent inEvent;
         while (inQueue.size() > 0) {
             try {
              inEvent = inQueue.deQueue();
              switch (inEvent.getType()) {
              case GameEventDefault.S_LOGIN_ACK_OK:
                  break;
              case GameEventDefault.SB_LOGIN:
                  stdOut( java.util.ResourceBundle.getBundle("src/com/hypefiend/javagamebook/games/rps/Messages2/Messages2").getString("login:_") + inEvent.getMessage());
                  break;
              case GameEventDefault.SB_LOGOUT:
                  stdOut( java.util.ResourceBundle.getBundle("src/com/hypefiend/javagamebook/games/rps/Messages2/Messages2").getString("logout:_") + inEvent.getMessage());
                  break;
              case GameEventDefault.SB_CHAT_MSG:
                  stdOut( inEvent.getPlayerId() + ": " + inEvent.getMessage());
                  break;
              case GameEventDefault.S_DISCONNECT:
                  stdErr( java.util.ResourceBundle.getBundle("src/com/hypefiend/javagamebook/games/rps/Messages2/Messages2").getString("disconnected_from_server:_") + inEvent.getMessage());
                  shutdown();
                  break;
              case GameEventDefault.S_JOIN_GAME_ACK_OK:
                  stdOut( inEvent.getMessage());
                  inGame = true;
                  break;
              case GameEventDefault.S_JOIN_GAME_ACK_FAIL:
                  stdOut( inEvent.getMessage());
                  inGame = false;
                  break;
              case GameEventDefault.SB_PLAYER_QUIT:
                  stdOut( inEvent.getMessage());
                  inGame = false;
                  break;             
              default:
                  stdOut( inEvent.getMessage());
                  break;
             catch (InterruptedException ie) {}
         * return our GameName
        public String getGameName() {
         return "RPS";
         * factory method to create GameEvents
        public GameEvent createGameEvent() {
         return new GameEventDefault();
         * factory method to create login GameEvents
        public GameEvent createLoginEvent() {
         return new GameEventDefault(GameEventDefault.C_LOGIN);
         * factory method to create disconnect GameEvents
        public GameEvent createDisconnectEvent(String reason) {
         return new GameEventDefault(GameEventDefault.S_DISCONNECT, reason);
    }Edited by: ahulet2007 on Nov 2, 2007 8:49 AM

    You continue to use slash instead of dot.
    You did not follow any of my suggestions and still awarded me dukes,
    so I feel I have to make a last attempt.
    Here is what I have:
    D:\try>dir /s
    Volume in drive D is New Volume
    Volume Serial Number is 3ECC-CB52
    Directory of D:\try
    11/05/2007  12:18 PM    <DIR>          .
    11/05/2007  12:18 PM    <DIR>          ..
    11/05/2007  12:19 PM    <DIR>          a
                   0 File(s)              0 bytes
    Directory of D:\try\a
    11/05/2007  12:19 PM    <DIR>          .
    11/05/2007  12:19 PM    <DIR>          ..
    11/05/2007  12:19 PM    <DIR>          b
    11/05/2007  12:17 PM               808 MyClass.class
                   1 File(s)            808 bytes
    Directory of D:\try\a\b
    11/05/2007  12:19 PM    <DIR>          .
    11/05/2007  12:19 PM    <DIR>          ..
    11/02/2007  01:56 PM                11 Messages.properties
                   1 File(s)             11 bytes
         Total Files Listed:
                   2 File(s)            819 bytes
                   8 Dir(s)  70,889,848,832 bytes free
    D:\try>java a.MyClass
    value
    D:\try>Here is the code for MyClass:
    package a;
    import java.util.*;
    public class MyClass
      public static void main( String[] args ) throws Exception
        ResourceBundle rb = ResourceBundle.getBundle( "a.b.Messages" );
        System.out.println( rb.getString( "key") );
    }Here is the contents of Messages.properties:
    key = value

  • I can't find the right screen name?

    I can't find a right screen name?

    This is a Flash Player forum. Could you please elaborate the issue? What are you trying to do?
    Thanks,
    Sunil

  • How can I find the specific channel name and modify channel name in automatically in VBS?

    How can I find the specific channel name and modify channel name in automatically in VBS? (DIAdem 9.1)
    I would like to change channel name = "speed01" ... "speed10"  to  channel name = "velocity01"..."velocity10.
    martino

    Hello Martino,
    this script will help:
    Option Explicit
    Dim i
    Dim n
    For i=1 To 10
    If i < 10 then
    n = CNo("speed0" & i)
    Else
    n = CNo("speed" & i)
    End If
    If n > 0 Then
    If i < 10 then
    ChnName(n) = "velocitiy0" & i
    Else
    ChnName(n) = "velocitiy" & i
    End If
    End If
    Next
    Matthias
    Matthias Alleweldt
    Project Engineer / Projektingenieur
    Twigeater?  

  • How can i find the meta chain name?

    My process chains are running based on meta chain option,So how can i find the meta chain name???

    Hello
    Goto SE16
    Table RSPCCHAIN
    ut u r local chain name as varient and exe
    similerly goback if the chain you get is also a local chain....Until you get only one chain...
    Where Used List --
    RSPCPROCESSLOG table
    You can see the Process Logs at SM37 too based on the Technical name of the Chain you can trace the Meta chian
    Thanks
    Geeta

  • "Can't find bundle for base name" in a JavaBean called from a JSP

    I have quite a large EAR file which contains an EJB.jar file, a WAR file and various other jars used by the EJB.jar file. I the WAR file has a number of JSPs and now some JavaBeans. The JavaBeans live in their own jar which is deployed in the WEB-INF\lib directory. I am trying to use ResourceBundles for the error messages which are generated in the JavaBeans.
    Here is the problem. I have put the resource bundle properties files in the WEB-INF\classes directory and I can access them just fine from the JSPs. Not so from the JavaBeans, I get the following error:
    "Can't find bundle for base name webui-resources, locale en_US Can't find bundle for base name webui-resources, locale en_US ".
    I have tried just 'jarring' up the properties files into the JavaBeans jar but no dice.
    It 'smell's like a Classloader issue. Any help greatly appreciated.
    Ian.
    p.s. I am using JBoss 2.4.4 with Tomcat 3.2.3 and JDK 1.3.1_09 on XP.

    Here is my suggestion.
    Do you have the property file named "webui-resources_en_US.properties"?
    Here is the example
    language="en"
    country="US"
    locale = new Locale(language, country);
    bundle = ResourceBundle.getBundle("com.<companyname>.webui-resources");
    copy the webui-resources_en_US.properties file to the directory
    com.<companyname> in your workspace/IDE/localdirectory. or ftp that file to classes/com/companyname directory
    This should work. I am using it that way.
    which appserver r u using?

  • Can't find bundle for base name Error - Portlet Localization

    I am trying to have the portlet content localization to work. I am using the 5.0.4 with Web Logic.
    I placed following files in the same directory:
    Portlet.jspStaplesBundle.properties(default)StaplesBundle_en_US.propertiesStaplesBundle_fr_FR.properties
    However, when I load the portlet, i got the error. "Can't find bundle for base name StaplesBundle, locale en_US". Do I need to place the bundle in a specific folder? I copied detailed errors below. Any ideas?
    java.util.MissingResourceException: Can't find bundle for base name StaplesBundle, locale en_US at java.util.ResourceBundle.throwMissingResourceException(Ljava.lang.String;Ljava.util.Locale;)V(Unknown Source) at java.util.ResourceBundle.getBundleImpl(Ljava.lang.String;Ljava.util.Locale;Ljava.lang.ClassLoader;)Ljava.util.ResourceBundle;(Unknown Source) at java.util.ResourceBundle.getBundle(Ljava.lang.String;Ljava.util.Locale;)Ljava.util.ResourceBundle;(Unknown Source) at jsp_servlet.__portlet._jspService(Ljavax.servlet.http.HttpServletRequest;Ljavax.servlet.http.HttpServletResponse;)V(__portlet.java:162) at weblogic.servlet.jsp.JspBase.service(Ljavax.servlet.ServletRequest;Ljavax.servlet.ServletResponse;)V(JspBase.java:33) at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run()Ljava.lang.Object;(ServletStubImpl.java:996) at weblogic.servlet.internal.ServletStubImpl.invokeServlet(Ljavax.servlet.ServletRequest;Ljavax.servlet.ServletResponse;Lweblogic.servlet.internal.FilterChainImpl;)V(ServletStubImpl.java:419) at weblogic.servlet.internal.ServletStubImpl.invokeServlet(Ljavax.servlet.ServletRequest;Ljavax.servlet.ServletResponse;)V(ServletStubImpl.java:315) at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run()Ljava.lang.Object;(WebAppServletContext.java:6452) at weblogic.security.acl.internal.AuthenticatedSubject.doAs(Lweblogic.security.subject.AbstractSubject;Ljava.security.PrivilegedAction;)Ljava.lang.Object;(Optimized Method) at weblogic.security.service.SecurityManager.runAs(Lweblogic.security.acl.internal.AuthenticatedSubject;Lweblogic.security.acl.internal.AuthenticatedSubject;Ljava.security.PrivilegedAction;)Ljava.lang.Object;(Optimized Method) at weblogic.servlet.internal.WebAppServletContext.invokeServlet(Lweblogic.servlet.internal.ServletRequestImpl;Lweblogic.servlet.internal.ServletResponseImpl;)V(WebAppServletContext.java:3661) at weblogic.servlet.internal.ServletRequestImpl.execute(Lweblogic.kernel.ExecuteThread;)V(ServletRequestImpl.java:2630) at weblogic.kernel.ExecuteThread.execute(Lweblogic.kernel.ExecuteRequest;)V(Optimized Method) at weblogic.kernel.ExecuteThread.run()V(ExecuteThread.java:178) at java.lang.Thread.startThreadFromVM(Ljava.lang.Thread;)V(Unknown Source)

    Just ensure the DataBase_en_US.properties file exists in the following folder:
    <WebApp Directory>\ web \ WEB-INF \ classes \ DataBase_en_us.properties

  • Wherre can I find how to backup my recent purchases from the I tunes store?

    Where can I find how to backup my recent purchases from the I tunes store?

    I suspect you're looking for a replacement for the backup to disc option.
    Try this thread...
    tt2

  • How can we find the original XML Name of a Field

    Hi All,
    Just like the Reports To Field has XML Name as *[<ManagerFullName>]*
    Can anyone tell me how I can find the Original XML Name for the "Reports To (Alias)" User field?.
    Thanks in advance,
    Royston

    My scenario is that,
    When a user saves a new campaign I want to change the owner of this campaign to the user he reports to i.e(Manager Alias) Since the Owner field takes the Alias Name.
    To achieve this I have created a workflow to assign that Campaign to the Manager.
    Here is the Code snippet
    The triggering event is : Before modified record is saved.
    action is Update Field Owner with UserValue('<ManagerAlias>')
    Unfortunately its not accepting the ManagerAlias field....I have tried a similar scenario with the <ManagerFullName> field and its working fine.
    Thanks,
    -Royston
    Edited by: Royston Goveia on May 12, 2009 9:59 PM

  • How can I find out the device name that has downloaded certain apps, someone else is using my iD to download stuff and I want to know who it is.

    let me know what i can do to find out.

    You can stop that someone by changing your password. You can not find someone, not really unless after you change password, that someone will come to you and ask for it.

  • Spotlight can not find a pdf layer name

    i have created a layered pdf file with my american version of adobe indesign cs,
    but the geman spotlight criteria "ebenen/ enthält/ ..." (in english: "layers/ contains/...") cannot find the file.
    how can i find the file? or
    how can i swith to english criteria (this could be the problem) ?
    thank you very much for your help!!
    mark

    Greetings,
    The issue is really quite confusing but not impossible to work around. I spent about 10 minutes cursing the gods above and contemplating all manner of evil upon Apple and Adobe until the heavens opened and showed me the light.
    Follow closely...
    Solution 1. Move a copy of your Adobe PDF's to an alternate location such as a removable drive (USB Drive, External Hard Drive). I can almost say with 100% certainty that spotlight with be able to search inside of the documents in the alternate location.
    Solution 2. In Adobe 7.0 Pro, go to the Advanced menu and use the PDF optimizer to save a copy of your PDF again in the same location as the original with a different filename. For example MyPDF.pdf becomes MyPDFoptimized.pdf.
    Both solutions worked for me, so...
    Good luck and let me know if this helps anyone else.
    charles.r.a.johnson at mac.com

  • Argh Can't find a new laptop mini antenna connector adapter for my tuner

    It's the little mini connector that came with the antenna.  it allows you to plug a standard coax cable into the mini tv tuner input.
    Does anyone know a product number or somewhere I can get one?  I've looked everywhere!  HP Parts department was useless.  They just looked in the manual and then said 'nope' go talk to tech support. 
    HP tech support can't find it.  I've looked through every post in this forum.  Looked all over notebook review forums.  Searched everywhere online.  The tuner in my device manager is described as:
    HP ATSC/Analog TV Tuner 
    If you have one and aren't using yours, let me know.

    This company made the tuner in my dv4t. Scroll down on this page.
    http://www.avermedia-usa.com//AVerTV/Product/Acces​sory.aspx
    It's about 4 items down. I hope it's what you need. It looks like mine.

  • Can't Find "fit to artwork" in CC artboard panel

    In CS6, you could select the artwork, then go the the Artboard Panel, choose options, and then choose "fit to selected artwork" or "fit to artwork bounds." This resized the artboard to fit your artwork. In Illustrator CC, both options are absent in the Artboard Panel and "Custom" isn't there either. I can't find these options anywhere else. Help files assume they are there.  I am reopening files in CS6 to do this now. Can't believe they eliminated this feature. I use it everyday. Where did it go?
    CS6 Version
    CC

    Object > Artboards.
    But you're right, they should be there as well.
    They appear for me....

Maybe you are looking for