I have problems with my nano.......PLEASE HELP

well i bught an ipod nano this week and today when i tried to adjust the volume it didnt show it on the screen (i can lower and raise the volume but i cant see it on the screen )
i dont speak english(just spanish) so i hope you can understand....................

What do you see on the screen? If it's stuck on the artwork or rating screen, see this.
iPod stuck on the ratings screen.
If it's not that, try these.
The Five Rs.

Similar Messages

  • Weirdest problem with ipod!PLEASE HELP ME!!!

    Okay, i tried to load a playlist that had about 100 songs on it. While its loading, the update just stops. My ipod starts going crazy.The apple logo keeps lighting up and then the light doesnt come on but the logo is still there. You can hear the inside of it like trying to come on but then it just keeps doing the same thing til the battery life runs out! I really need help on this! I've tried to reset but everytime I do it it just keeps doing the same thing. I dont know if i should wipe all my songs off of itunes or what but im so confused and so aggravated with it. PLEASE HELP ME! I'D REALLY APPRECIATE IT!
      Windows XP  

    Welcome to Apple Discussions!
    See if any of these help...
    iPod Only Shows An Apple Logo and Will Not Start Up
    iPod Only Shows An Apple Logo
    btabz

  • I have a problem with my microphone, please help if you can

    Hello everyone.
    I have a problem with my microphone. After i bougth Creative's sound card "Sound blaster X-Fi Xtreme Audio" and installed it, everything was allright and my microphone was working great, but this was when I used Windows XP, when i started to use Windows 7, it suddenly was very weak and i almost didn't heard it.
    Currently, I have bouth Windows XP and Windows 7 installed, so I know the microphone is working when I am switching up between the OS, because it still works good on Windows XP.
    If you can help please tell me.
    I am using Windows 7 64 bit, I made sure the flexijack settings in the Audio controll panel are set to microphone and not line in, in the Windows 7 audio controll I have set the microphone volum to maximum and made sure it is configured properly.
    Thank you for helping.

    Originally Posted by tav2000
    Hello everyone.
    I have a problem with my microphone. After i bougth Creative's sound card "Sound blaster X-Fi Xtreme Audio" and installed it, everything was allright and my microphone was working great, but this was when I used Windows XP, when i started to use Windows 7, it suddenly was very weak and i almost didn't heard it.
    Currently, I have bouth Windows XP and Windows 7 installed, so I know the microphone is working when I am switching up between the OS, because it still works good on Windows XP.
    If you can help please tell me.
    I am using Windows 7 64 bit, I made sure the flexijack settings in the Audio controll panel are set to microphone and not line in, in the Windows 7 audio controll I have set the microphone volum to maximum and made sure it is configured properly.
    Thank you for helping.
    Hi tav,
    While waiting for other forum members to post..
    Perhaps you havent installed the latest drivers yet? (link HERE)
    Cheers!

  • I have a problem with iphone 3gs please help

    ok my iphine was jail broken and i restored it as it was and now its stuck on recovery mode and i cant restore it everytime i do it gives me the message with 1015 i thikn please help me if u have a solution.

    If I understand correctly, you are in Romania and the phone was bought from Sweden.  In order to unlock that device, you have to have the carrier in Sweden unlock it.  If your phone just won't power on, then wjosten has provided the steps needed to try and power it on.  Otherwise, if you want the phone "unlocked" or if it has been "jailbroken" or an unauthorized version of software has been put on the iphone, nobody can help you here. 

  • PROBLEM WITH NEW ROW  --- PLEASE HELP

    Hello,
    I've had it with the framework. It's been 20 hours and counting that I am trying to insert/validate a new record.
    Things just don't work as advertised.
    Here's the situation:
    I have an entity object with various validation rules in the validate() method.
    Then I have a simple JSP page to insert new records.
    At submit of button, I follow the framework's default
    create new row and fill it up, with the difference
    that i need to validate the row as soon as I fill it up
    with data from the http request:
    <jbo:OnEvent name="Create">
    <jbo:Row id="newrow" datasource="ds" action="CreateInRange" >
    <% try { %>
    <jbo:SetAttribute dataitem="*" />
    <%
    newrow.validate(); //******* NOTICE HERE THAT I VALIDATE
    } catch (JboException ex) {
    newrow.remove();
    throw ex;
    } %>
    </jbo:Row>
    </jbo:OnEvent>
    Unexpected behavior 1: If the validation fails,
    newrow DOES NOT GET REMOVED!!!! I know this
    since when I view data thru a data table component,
    the row is there WITH THE ERROR INFORMATION set!!.
    If I do a commit transaction, then the erroneous information ENDS UP IN THE DATABASE!!!!!
    Unexpected behavior 2: If I do a rollback, every
    call to subsequent pages results in a jsp error:
    java.lang.ClassCastException: oracle.jbo.html.jsp.datatags.OnEventTag
    PLEASE HELP.
    Chris Lambrou

    I have (hopefully) found a solution to my part of this problem. I was getting the ClassCastExceptions on any page with a <jbo:row> tag after doing a failed DML action. I have tested this with the delete event. (btw, I am using jdev9.0.3.3 w/ BC4J/JSP) Before what I was doing was this:
    <% try { %>
    <jbo:Row id="delrow" datasource="ds" rowkeyparam="jboRowKey" action="Delete" />
    <% } catch (JboException jboEx) { %>
    do something
    <% } catch (Exception ex) { %>
    uh-oh, this is bad
    <% } %>
    If I removed the try/catch block everything worked fine. Unfortunatlely, I need to try/catch block here. To work around the problem I changed the code to this:
    <% Row rowDelete = ds.getRowFromKey(params.getParameter("jboRowKey")); %>
    <% try { %>
    <%
    rowDelete.remove();
    %>
    <% } catch (JboException jboEx) { %>
    do something
    <% } catch (Exception ex) { %>
    uh-oh, this is bad
    <% } %>
    The second bit of code does the same thing (but it doesn't use a bean like I think <jbo:Row> does) and it doesn't cause the ClassCastError on subsequent errors.
    I really hope this helps someone else because it took me forever to get a workaround!
    ~Rob Lundeen

  • Problem with "Package Spec" please help.

    Hello once again.
    I'm developing a master-detail form, so I'm using a "Package Spec" variable to hold the primary key value from the master form. The primary key value for the master is generated by a sequence.
    Here's the package spec:
    PACKAGE primary_keygen IS
    pkey varchar2(15); 
    END;Now the master table has the following "Before Insert" Trigger .
    CREATE OR REPLACE TRIGGER MASTER_NUM_GEN
    BEFORE INSERT
    ON MASTER
    FOR EACH ROW
    DECLARE
    primary_key_value varchar2(15);
    BEGIN
    select lpad(to_char(ref_gen.nextval), 4,'0')
    into primary_key_value from dual;
    primary_keygen.pkey:='ABC/'||primary_key_value;
    :new.Ref_Number:=primary_keygen.pkey;
    END;For the detail block. I have the following "Before Insert Trigger" to generate the primary key values.
    CREATE OR REPLACE TRIGGER DET1_NUM_GEN
    BEFORE INSERT
    ON DETAIL1
    FOR EACH ROW
    BEGIN
    if :new.M_ref_number is NULL THEN
    :new.M_ref_number:=primary_keygen.pkey;
    ENd if;
    END;Works quite fine if I have only one detail block. But if I have multiple detail blocks. Depending on the user's selection. i.e. After entering data into the master block, the user selects a detail block ('Letter type'- using stacked canvases for this purpose and radio buttons for selecting the view) and then Inserts data into it. here's what I do in the Detail block2.
    CREATE OR REPLACE TRIGGER OREF_NUM_GEN
    BEFORE INSERT
    ON DETAIL2
    FOR EACH ROW
    BEGIN
    if :new.O_ref_number is NULL THEN
    :new.O_ref_number:=pkey_gen.master_key;
    ENd if;
    END;Now the problem is that When I enter one record into detail1, works fine, but for the second time, when I try to insert another record. the master table gets a new reference number (primary key value) while the detail block gets the previous value that was used in the first record!, so that means 'pkey_gen.master_key' is holding the old value, while in my opinion it should hold the new value, I dont know whats wrong here. If I try to insert two consecutive records into the same detail table, I get an error saying "Unique Constraint voilated", becuase the variable is holding the old values.
    And lastly after it inserts the record into the database, I get a dialog box saying, "successfuly inserted 2 records into the database" and when I click ok, the Form closes by itself, any ideas on how to stop this?
    I'm really stuck here. Please help me out on this.
    Thanks.
    Note: I'm using Form6i with Database 10g.
    Message was edited by:
    fahimkhan82

    Hi,
    Maybe the best way to start is to try building a new form from scratch. For simplicity I will assume that you have one master and one detail table. Master table has a primary key and the detail table has a foreign key to the master. Based on this, with the forms you can create a database block based on your master table. Use the wizard. Again using the wizard, create a second block based on the detail table. You'll see a screen to prompt to create a relationship. Create one by selecting the master table and the right foreign key relation. Now take a close look to all triggers automatically created by the form. Also check the "Relations" object found in you master block object tree. Note that the foreight key column in the detail table has the "Copy Value From Item" property set to monitor the master block's primary key.
    This is the basic. You don't need the database triggers, except (in case you want to insert through, say, SLQPlus) the one for the master table, which will look like this:
    CREATE OR REPLACE TRIGGER MASTER_NUM_GEN
    BEFORE INSERT
    ON MASTER
    FOR EACH ROW
    BEGIN
    IF :new.ref_number IS NULL THEN
    select 'ABC/'||pad(to_char(ref_gen.nextval), 4,'0')
    into :new.ref_number
    from dual;
    END IF;
    END;
    Now you have to take care about the inserts in your form. Create PRE-INSERT trigger on the master block.
    IF :master.ref_number IS NULL THEN
    SELECT 'ABC/'||pad(to_char(ref_gen.NEXTVAL), 4,'0')
    INTO :master.ref_number
    FROM dual;
    END IF;
    Run the form and explore different situations to see how the form is keeping the data integrity.
    Compile with Shift+K (incremental). Sometimes forms blow just because not all of the trigers were compiled properly.
    Hope this helps...

  • Having problems with Frontrow. Please help!

    Hi,
    i've been trying to figure this out all day today but i haven't found any solution. hopefully you Mac Geniuses can help. now, my problem isn't that my videos won't play, because they do. they all play perfectly. okay, so when i launch Frontrow, all my video files appear under their respective folders; my TV Shows appear under the TV Shows folder and my Music Videos appear under the Music Videos folder. however, for some strange reason, these files also want to appear under the Movies folder. That means they're showing up twice! -under the Movies folder and TV Shows/Music Videos. is there anyway to fix this, because it's really cluttering my Movies folder and i admit i'm a really anal neat-freak.
    Also, i have correctly labeled the video files as Movie, TV Show or Music Video under iTunes. Everything is organized well under iTunes, so i doubt it's that.
    please help!!
    Message was edited by: ec84

    It might be because with the new update, it seems as though anything stored in the MOVIES folder , shows up under movies in Front Row. I have a folder of Transformers AVI'S in my movie folder, now it shows up in the movie directory of front row

  • Messaging Problem with 3.0 Please Help

    I upgraded to 3.0 and now 3GS. Prior to this my wife was able to text me from her verizon blackberry, no issues and it came in on the iphone messaging. Now, somehow the iphone is changing it into an "email". The text appears as her [email protected] It's not a real email because it's not appearing in my home outlook server which is where the iphone pulls my emails from. This is way inconvient since the text doesn't appear till i go manually pull email. Anyone else have these issues. She didn't do anything different, just texts to my phone #? Techies please help.
    Paul in San Diego

    Hi Omid,
    As far as I am aware of you will need to have a two way trust to proceed with the integration.
    Cheers! Happy troubleshooting !!! Dinesh S. Rai - MSFT Enterprise Project Management Please click Mark As Answer; if a post solves your problem or Vote As Helpful if a post has been useful to you. This can be beneficial to other community members reading
    the thread.

  • Connection problems with WRT54G Router PLEASE HELP!!!!

    Hello all,
    Im having a huge issue and im hoping that someone can help me. Awhile ago i changed what i believe to be my router settings using 192.168.1.1 and i believe i added WEP secuirty. I changed my password i know that much. Anyway my problem is this - When i try connecting a router to my computer, i cannot access the internet OR the 192.168.1.1 setup. I just get a yellow caution sign on my wireless settings (running Windows 7), but when i connect my cable modem (Comcast) to my computer, i can access the internet. I have reset both the router and my cable modem MANY times (hard resets) and STILL cannot get the setup page for the router. I have TWO WRT54G rourters and BOTH do the same thing when connected to my desktop , yet BOTH work fine on an old machine running XP, so it is something i did with this computer. Can someone please help me solve this issue? any hlep would be appreciated as i am stumped and do not know how to fix this and cannot use WI-FI or my Xbox 360 until i can fix this..Thanks.

    Check the IP address of your computer and see if it's in range with the router's IP.
    To learn how to do so, click here.

  • I'm having problems with my ringtones please help

    I have tried everything to fix my BB Curve problem even down to the battery.   I have custom ringtones set for my husband and other family members.  So whenever they call or text I know who it is..  Now my issue is that if I get a text from my son his ringtone will sound than if I get a standard text my son's ringtone will go again.  Not the default for just regular ringtones.  I took off my facebook becuase someone said that could be a problem.  Verizon sent me a new phone and I entered everything manually so if there was something wrong I wouldn't transfer the problem to the new phone.  It's not fixed.  If someone could please help me.  I'm getting ready to turn my BB off completely it's that frustrating.  Thank you for any help.

    It sounds as if you are saying that any "non-specific" SMS sender receives that text tone of the last one you have set a personal tone for who has texted you?
    I don't know.  I can only say that if you use those instructon in the guideline, they work.
    There is a user here named Cathlabnurse, she has a good understanding of these settings... Maybe you could send her a Private Message to review your settings with you.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Problem with file downloads - please help

    Good morning. Since upgrading to BT Infinity 2, I have been experiencing the following problems:
    Cannot update Sonos firmware to version 5 - download times out and gives error 30
    Cannot download most files from safari - all start for the first few kb and then just hang
    Cannot download larger PDF files from Mac Mail
    These problems manifest themselves over wireless and wired connections, with the BT Homehub 5 and an Asus router. My ipad has no problems when on other networks or if I access my email from my work computer. When talking to BT technical support over the chat facility yesterday the connection dropped once every 10-30 seconds before reconnecting again. All of this leads me to believe that I have an intermittent failure on my broadband connection however BT insist that there is nothing wrong with the line or the router. I have changed channels on my router but this does not seem to make things better. Internet is working fine on all my devices for web browsing - only file downloads experiencing problems.
    Please help.

    Oh sorry, I thought from your description you were using an ASUS connected to the HH5, but it turns out you're using them separately.
    Is there a firmware update you can get on the ASUS?
    If you found this post helpful, please click on the star on the left
    If not, I'll try again

  • Problem with long report - please help

    We are using crystal report with ASP.NET/C# (Visual Studio 2005).
    Using Crystal report viewer control on the web page to have previews.
    A particular report is for say 6000 pages. I can not preview the report on the web page.
    I have the following questions:
    1. Does it make sense to think of previewing such a huge report on web page?
    2. What should be the alternate?
    3. I tried "Export to PDF" technique, but it failed.
    Thanks in advance for your help.
    Regards,
    Kangkan

    I tried to use exportToPDF technique. It works when the number of page is less. But just hangs up when the number of pages is high. I am working on finding the breaking number.
    There is no problem with HD space as well.
    I also tried to print the report to a printer on the server directly. I used the printer as "Adobe PDF" to use Acrobat Distiller to create the PDF. It starts up and asks for the destination for the PDF file also. Once it starts the system shown an error and the Microsoft Feedback Assistant for failed application comes up.
    I am now trying to print the pages to a network printer connected to the server. Shall get back with latest update after sometime.
    Please do look into other possibilities or points where I might have committed an mistake.
    Thanks and regards,
    Kangkan

  • Problem with my OC4J, please help

    Hi
    i have one big problem with my OC4J Application Server: i create an instance, then i deployed my appliation with the .ear file. i have 15 page uix. my problem is when i want to see my application from the browser, some of the page run correctly ans some other no; in other world the one that don't run, in reality it run but it display the last one that run correctly.
    i hope that i m celar.
    can you help me.
    Thank you

    Islem,
    Please post your log file content as well as server version, OS etc. (see:
    http://forums.oracle.com/forums/ann.jspa?annID=818-Michael

  • Problem with PWM signal, Please Help!

    Hi all,
    I am designing a PWM signal where its output is going to connect 4 optocouplers to drive a H-bridge MOSFETs. However, I am now having a problem of getting an output signal strong enough to drive the optocoupler. 
    I have attached the Multi-Sim file along with this post. Please feel free to help me to solve this problem thank you.
    The version of Multi-Sim I am using is 10.0.144
    Attachments:
    PWM_HCPL0631.ms10 ‏72 KB

    Hi Justin,
    I am slightly confused as to whether this is a problem with Multisim or the design of your circuit.  Are the components in Multisim behaving in an unexpected manner in comparison to their real-world counterparts?
    Regards,
    Thomas Clark
    Applications Engineer
    National Instruments UK & Ireland

  • Problem with my macbook -PLEASE HELP!

    when i swtch my macbook on the sceen lits up for two seconds and then goes black. i tried all the instructions in the booklet but when i was installing the mac os x again (had the first disc in) there came a note that i have to replase disc 1 by disc 2. then i checked that i had the right setting that all my info wouldnt disappear when installing again and then it just started to install the thing even tho i still had disc 1 inside and before that it told me to change the disc. ok that was probably ok but then in the middle of installing disc one my macbook's sceen went dark again. when i started it again it seemed that i was in the same point where i started from. how can i continue from this? can my precious info still be saved? if i now continue installing do i start from the beginning? i live in a small town and no one else here has a mac and im not very good with any computers. PLEASE HELP!
    macbook   Mac OS X (10.4.8)  

    Your data could possibly be saved....If the installation didn't full complete, your data should still be on your hard drive. As for you MacBook, it sounds like a MAJOR problem and should be brought to an Apple Genius at once.
    It is possible for them to obtain your data and get it to you somehow. You should bring this to your Apple store, and, judging that you have the service plan, they will replace or repair your laptop accordingly.
    I haven't heard anything of the sort for the MacBook, so, hopefully someone has and can further your troubleshooting procedures before you take it in and risk being away from your laptop for a week or so. I would opt for taking it to your Apple Store.
    Remember to mark as helpful or solved.
    -benny

  • Problem with front row, please help!

    I got a year old MBP 15" which I updated to leopard, and it works generally fine, except for the fact that when using front row and leaving it playing music for about 5 minutes idle, it freezes, goes to blank screen, but still plays the playlist it was set on, but when I use the remote control, or press keys, it keeps frozen, the only way to quit is to force power off.
    Please help me, as I really like Front Row and my MBP is my hub for playing music in reunions.
    Thanks in advance

    I have (hopefully) found a solution to my part of this problem. I was getting the ClassCastExceptions on any page with a <jbo:row> tag after doing a failed DML action. I have tested this with the delete event. (btw, I am using jdev9.0.3.3 w/ BC4J/JSP) Before what I was doing was this:
    <% try { %>
    <jbo:Row id="delrow" datasource="ds" rowkeyparam="jboRowKey" action="Delete" />
    <% } catch (JboException jboEx) { %>
    do something
    <% } catch (Exception ex) { %>
    uh-oh, this is bad
    <% } %>
    If I removed the try/catch block everything worked fine. Unfortunatlely, I need to try/catch block here. To work around the problem I changed the code to this:
    <% Row rowDelete = ds.getRowFromKey(params.getParameter("jboRowKey")); %>
    <% try { %>
    <%
    rowDelete.remove();
    %>
    <% } catch (JboException jboEx) { %>
    do something
    <% } catch (Exception ex) { %>
    uh-oh, this is bad
    <% } %>
    The second bit of code does the same thing (but it doesn't use a bean like I think <jbo:Row> does) and it doesn't cause the ClassCastError on subsequent errors.
    I really hope this helps someone else because it took me forever to get a workaround!
    ~Rob Lundeen

Maybe you are looking for

  • How to use session tracking

    i am making shopping mall project . ist page conatins list of product avaiale 2nd page contains list of manufacturuer avaible problem:- i want to display on 3rd page the product seleted by user in 1st page i used session tracking concept.but problem

  • JAAS: How to create Group of Resources to define permissions hierarchically

    Hi, Is there a way to create a group of resources in JAAS ? What I mean is to create a group of pages, a group of bank Accounts ( say loan accounts ), a group of business rules, etc. I have observed that Group extends Principal, and a subject can hav

  • I was wondering, would be able to use my eligible upgrade on 1 phone line to buy a phone for another line?

    Hey, I was wondering if I would be able to use my eligible upgrade on one phone line to buy a phone for another line?. Also, I saw a commercial on TV about getting a plan with 10 gb of data for like 130 a month, that does include the cost of both pho

  • Iweb SEO Error

    Hello, I am really desperated, I was uploading my website, just like always with SEO TOOL and I got the following error message: "An error occured during the operation" "Directory created" I looked in the forum and there is a new release 1.9.2. well

  • XCode crashes whenever I open it

    Hello all, I recently updated my old Macbook from Leopard to Snow Leopard. I also went up to 2 gigs of ram (much better than the 512 mb I had before). Since I got an iPhone a few months ago, I've been eagerly wanting to develop a few apps. However, a