Help needed. How to replicate IPOD screen on a PC

is there any possible way (an app or something)through which I can replicate (see) my ipod nano screen on my PC. the ipod screen has gone bad.

Here's what I want to do: using my MacBook, I want to re-format or "restore" the ipod nano to work on a PC using Windows.
You cannot. When you Restore on iTunes for Mac, it will format the iPod with HFS+, which Windows cannot read.
When you Restore with iTunes for Windows, it will format it FAT32, which will work iTunes for Macs or Windows.
So Restore it with iTunes for Windows and then you can use it with either computer. It will only take a few minutes to Restore it.

Similar Messages

  • HELP HOW TO MAKE IPOD SCREEN SHOW UP ON WINDOWS 7 LAPTOP!

    Please help I want to get myh ipod screen to show up on my laptop but I don't know how. HELP!!!!!

    I do not fully understand you question.  If you mean you want to watch the screen of your iPod on your computer the answer is no.  There are video-out connectors you can purchase for your iPod that will output VGA, composite and component signals.  If your laptop can accept such a signal you can see the TV output on your laptop.  However, the output does not mirror the iPOd screen and it only works with apps that support TV out.

  • Help needed in making a login screen

    hi all,
    i need to make a login screen in flash in which a user enters
    a password and username and both are checked from an xml file. i
    need your help in making it. could anyone redirect me to some
    tutorial or if anyone can post the code here, i would really be
    grateful to you. thanks,
    gaurav

    First you need to load the xml file that contains the list of
    user names and passwords into variables using actionscript.
    Use this tutorial.
    http://www.actionscript.org/tutorials/intermediate/XML/index.shtml
    Then compare the value entered by the user with the list of
    usernames and passwords.
    But be aware:
    1>All the processing happens on the client machine
    2>Extremely insecure if you are after a secure login.
    3>and when you update the XML file it won't necessarily
    take effect immediately on all the user's machines as they may be
    using a cached version of it.
    Ideal method is to use server side validation script using
    asp, asp.net, jsp or php.

  • Urgent help need:How inventory system and fulfillment system work

    Hi Every one ,
    I have an requirement to work on inventory and fulfillment system,below are my questions,
    1)I have stock level quantity for an sku is 2 ,if one user done with his order with quantity of 2 then how we can show quantity to the second customer (if stock not available we gone loss the business )
    how we can handle this ?
    2)There are few orders are completed(if some are orders are having quantity available in stock some or backorders)
    here how the fulfillment system understand those orders and how it will update the inventory.
    Could you please any one help me how to work on above requirements or else give me some other solutions to full fill above .
    Regards,
    Jyothi Chidurala
    Edited by: Jyothi.mj on May 22, 2013 5:08 AM
    Edited by: Jyothi.mj on May 23, 2013 4:28 AM

    >
    1)I have stock level quantity for an sku is 2 ,if one user done with his order with quantity of 2 then how we can show quantity to the second customer (if stock not available we gone loss the business )
    how we can handle this ?
    you can always call InventoryManager.AVAILABILITY_STATUS_IN_STOCK to check whether the item is available in inventory , It is the business call if item not available how they want to handle this .
    hope this helps

  • Urgent help needed: how to display a list of records on the screen

    Hello,
    This is very urgent. Can anyone help me. I have posted this query of mine before also but still no reply came. My whole application is dependent on this problem. Actually I am developing an application for mobile phone using MIDP. I have a record store which contains personal details for users. I am able to add records to the record store. Now I want that these records can be edited. For this I want to display a list of firstname field on the screen (and not console) so that i can select a user to edit its details. I have written the code to read the records and individual fields and display it on the console but i want to display that list on screen. I tried list and array but it s giving some error.
    I am giving the code to read the records below. Please tell me how can I display it in a list on the screen.
    public void readStream(){
    try
    byte[] recData=new byte[50];
    String varname;
    ByteArrayInputStream strmBytes = new ByteArrayInputStream(recData);
    DataInputStream strmData=new DataInputStream(strmBytes);
    if (rsperdt.getNumRecords() > 0){
    ComparatorString comp=new ComparatorString();
    int i=1;
    RecordEnumeration re=rsperdt.enumerateRecords(null, comp, false);
    while(re.hasNextElement()){
    rsperdt.getRecord(re.nextRecordId(), recData,0);
    System.out.println("Record #" + i );
    varname = strmData.readUTF();
    System.out.println("Name #"+varname);
    System.out.println("---------------------------");
    i=i+1;
    strmBytes.reset();
    comp.compareStringClose();
    re.destroy();
    strmBytes.close();
    catch(Exception e){
    System.err.println("read Records class:read");
    }

    I could not understand ur point "post the code in tags". I am pasting the code below. Please help as my whole application is stuck due to this problem and I have a deadline of 7th oct.
    This midlet is getting called from some other midlet.
    import javax.microedition.lcdui.*;
    import javax.microedition.midlet.*;
    import javax.microedition.rms.*;
    import java.io.*;
    import java.util.*;
    public class frmread extends Form implements CommandListener
    static final String rec_store="db_per";
    private RecordStore rsperdt=null;
    private Vector vecname;
    private ChoiceGroup chname;
    private boolean flagSortByPriority = false, flagShowPriority = true;
    private Form fmmain;
    private Command cmdBack;
    private teledoc midlet;
    public frmread(String title, teledoc midlet)
    super(title);
    this.midlet = midlet;
    openRecStore();
    this.setCommandListener(this);
         chname = new ChoiceGroup("new", Choice.EXCLUSIVE);
         vecname = new Vector();
         cmdBack = new Command("Back", Command.BACK, 1);
    fmmain = new Form("Record Search");
         addCommand(cmdBack);
    setCommandListener(this);
    readStream();
         rebuildTodoList();
         closeRecStore();
    * Process events for this form only
    protected void rebuildTodoList()
    for(int j=chname.size(); j>0; j--)
         chname.delete(j-1);
         int priority;
         todoitem item;
         String text;
         StringBuffer sb;
         for (int j=0; j<vecname.size(); j++)
              item=(todoitem) vecname.elementAt(j);
              priority = item.getPriority();
              text = item.getText();
              sb = new StringBuffer((flagShowPriority ? (Integer.toString(priority) + "-"): ""));
              sb.append(text);
              chname.append(sb.toString(), null);
    public void commandAction(Command c, Displayable s)
    if (c == cmdBack){
    midlet.displayteledoc();
    public void readStream(){
    try
    byte[] recData=new byte[100];
    String varname;
    int varname1=0;
         ByteArrayInputStream strmBytes = new ByteArrayInputStream(recData);
         DataInputStream strmData=new DataInputStream(strmBytes);
         if (rsperdt.getNumRecords() > 0){
    ComparatorString comp=new ComparatorString();
    int i=1;
              int id = 1;
              vecname.removeAllElements();
              RecordEnumeration re=rsperdt.enumerateRecords(null, comp, false);
    while(re.hasNextElement()){
         rsperdt.getRecord(re.nextRecordId(), recData,0);
    System.out.println("Record #" + i );
    varname = strmData.readUTF();
                   varname1 = strmData.readInt();
                   id = re.nextRecordId();
                   System.out.println("Name #"+varname);
                   todoitem item = new todoitem(varname1, varname, id);
                   vecname.addElement(item);
                   System.out.println("---------------------------");
                   i=i+1;
    strmBytes.reset();
              comp.compareStringClose();
              re.destroy();
    strmBytes.close();
    catch(Exception e){
    System.err.println("read Records class:read");
    public void openRecStore(){
    try{
    rsperdt=RecordStore.openRecordStore("db_per",true);
    catch(RecordStoreException e){
    db(e.toString());
    public void closeRecStore(){
    try{
    rsperdt.closeRecordStore();
    catch(Exception e){
    db(e.toString());
    public void db(String str){
    System.err.println("Msg:" + str);
    class ComparatorString implements RecordComparator{
    private byte[] recData = new byte[20];
    private ByteArrayInputStream strmBytes = null;
    private DataInputStream strmDataType = null;
    public void compareStringClose(){
    try{
    if(strmBytes != null)
         strmBytes.close();
    if(strmDataType != null)
         strmDataType.close();
         catch (Exception e)
    public int compare(byte[] rec1, byte[] rec2)
         String str1, str2;
         try {
              int maxsize = Math.max(rec1.length, rec2.length);
              if (maxsize > recData.length)
              recData = new byte[maxsize];
                   strmBytes = new ByteArrayInputStream(rec1);
                   strmDataType = new DataInputStream(strmBytes);
                   str1=strmDataType.readUTF();
                   strmBytes = new ByteArrayInputStream(rec2);
                   strmDataType = new DataInputStream(strmBytes);
                   str2=strmDataType.readUTF();
                   int result=str1.compareTo(str2);
                   if (result == 0)
                   return RecordComparator.EQUIVALENT;
                   else if (result < 0)
                   return RecordComparator.PRECEDES;
                   else
                   return RecordComparator.FOLLOWS;
                   catch (Exception e)
                   return RecordComparator.EQUIVALENT;

  • Please Help! How to buy iPod mini?!

    How to get around in Apple Store? I want to buy an iPod mini, but all that pups-up is iPod Nano, iPod, and iPod U2!! how do I get to the iPod mini?

    Found it! At apple.com . I`m from Norway and tryed to find it at apple.no, but I guess it does`nt matter where i buy it Thanks for helping! Your link helped Brian..

  • Help needed : How to move OCR and Voting Disk

    Hi all experts...
    I am Mahesh. Working in DXB as DBA. We have serveral RAC installed clients. Among those one major client wants their OCR and Voting Disk to be moved from existing SAN to a new SAN which will be configured. Only OCR and Voting Disks needs to be moved.
    Details:
    =====
    Oracle Clusterware,ASM and DB version 10.2.0.3.0
    Windows 2003 Server Enterprise Edition
    2-Node RAC
    OCR and Voting disks are on RAW devices (not on CFS or NFS)
    I have read the clusterware administration document and also Metalink Note 428681.1 for the same.
    But it does not contain information how to move it to another new RAW in a new SAN device. (we need to keep it in raw device itself)
    How to identify the new disk path from windows operating system ? Then only we can move the OCR and VD right ???
    Help me for the same please...
    Thanks & regards,
    Mahesh.

    Hi Mashes,
    Could you list out the steps you did after you create the link on the new SAN using GUIObjectManager.exe?
    I tried on my VM and also in customer's test environment but I only successful using the following steps
    1. shutdown asm service, database service, listener service, CRS, EVM and CSS
    2. Object Manager Service is kept running
    3. from both nodes I issued the following command
    ocrconfig -repair \\.\OCRPRIMARY
    ocrconfig -repair \\.\OCRMIRROR
    4. according to metalink id 428681.1, I should do the following
    ocrconfig -overwrite
    However I was not successful because that command returns an error message (PROT-1: Failed to initialize ocr config).
    Therefore, I ran the following command
    ocrconfig -restore D:\oracle\1020\CRS\cdata\crs\backup00.ocr
    5. after that command, ocrcheck giving me the result and the ocr primary and mirror have been moved to the new partition.
    6. start the whole services starting from CSS, EVM, CRS, ASM, Listerner and Database service.
    Although what I experienced seems a bit weird and not the same as what was written in metalink, the RAC is running fine until now.
    What I would like to know is your experience on this. May be you can share it here.
    Thank you,
    Adhika

  • Help Needed Connecting my new Ipod to Computer

    I have a new Ipod 30 gb. when first connected to home computer, i downloaded the entire music library onto ipod with no problems. then loaded software onto different pc, and connected ipod which promptly wiped all music files from ipod. When connecting back to original computer it keeps telling me that someone else is logged in and does not register the ipod on the original computer.
    How do i get the original computer to recognise the ipod and download the library back onto the ipod?
    HELP!
    Thanks
    Ipod 30GB   Windows XP Pro  

    Any experts out there? I am struggling with this one.
    I have a new Ipod 30 gb. when first connected to
    home computer, i downloaded the entire music library
    onto ipod with no problems. then loaded software
    onto different pc, and connected ipod which promptly
    wiped all music files from ipod. When connecting
    back to original computer it keeps telling me that
    someone else is logged in and does not register the
    ipod on the original computer.
    How do i get the original computer to recognise the
    ipod and download the library back onto the ipod?
    HELP!
    Thanks
    Ipod 30GB  
    Windows XP Pro  

  • Help needed: How can I import a large audio collection with many playlists? iTunes crashes because so many playlists try to load and play at once.

    I've got a problem that I can't seem to figure out after reading scads of articles and posts. I'd be grateful for any help or ideas you can provide. Here's what's going on.
    I have a folder of GraphicAudio audio books. It contains roughly 500 subfolders, one for each book. In each folder are the mp3 files for the book and an m3u file that was supplied with the books at the time of purchase. None of this content is currently in my iTunes library.
    When I try to add this folder to my iTunes library, iTunes starts trying to play each playlist it encounters. It crashes after around 30 seconds. I suspect this is because it tries to switch and play playlists so rapidly.
    I don't actually want iTunes to start playing each playlist it finds. I just want to import my files. Once they're imported, I can select them and send individual books to my iPod Touch.
    Do any of you know of a work-around for this? I'm dreading the thought of having to import each subfolder one by one. I keep thinking that if I could just prevent iTunes from automatically trying to play the playlists, it would import the mp3s and playlist info without a problem. If there's no way to do this in iTunes, might there be a third party app that can manage it somehow?
    For reference, I'm using the latest version of 64 bit iTunes under 64 bit Windows 7.
    Thanks for taking the time to help me.

    I've written a script called DeDuper which can help remove unwanted duplicates. See this  thread for background.
    That said you should probably start by "undoing" the creation of extra mp3s. If you sort the song list on the Date Added column you can select then first song from the relevant batch, then scroll to the end of the group, hold shift and click to select the range. You can then delete and send to the recycle bin.
    My script won't be as effective against this group. The "Convert to format" tool may well specifiy a different bit rate from the source file, but it won't ever increase the quality of the audio. Clearly converting 128k mp3 to 256k mp3 would have no benefit so you want the original files.
    If you still have duplicates use the script to thin out what remains.
    tt2

  • Help needed - How to update Garageband 3

    Hi!
    I got my friend's old Macbook (Mac Os X 10.6.8) and am not familiar with the whole Mac world yet, so my question might be a little naive
    Garageband 3 is installed but not working properly as all the loops are missing.
    How can I update version 3? I downloaded version 10.0.1 but cannot be installed as it's not fitting.
    Before you ask: I tried the update link in the program itself, but it's dead. I guess it's just too old now. I also tried to download the newest version, but it's only compatible with Mac Os X 10.9 and further).
    Help!!! :/
    Thank you very much in advance!
    B*

    The original loops are not sold separately, only additional JamPacks, if you can find them, and they are are much more expensive than buying iLife.  And I do not remember, if the JamPacks are compatible with GarageBand 3.  Did your friend transfer the installation CDs to you, when you got the Mac? If MacOS X 10.6.8 was the original system of the Mac, the installer CDs may contain bundled iLIfe applications.

  • Urgent Help need - How to capture client change event

    Dear Gurus,
    I am not able to track whether user has changed any field in the table or not. I am using IWDNodeElement.isChangedByClient  to capture , but it is always returning me false.
    PLEASE HELP.
    Sample code
    wdContext.nodeTravelTable().moveFirst();
              try
                   for(int i = 1; i <= tblSize; i++)
                        wdComponentAPI.getMessageManager().reportSuccess("Currency is " + wdContext.currentCurrency_travelTableElement().getCElement());
                        wdComponentAPI.getMessageManager().reportSuccess("Is client changed" + wdContext.currentTravelModeElement().isChangedByClient());
                        if(wdContext.currentTravelModeElement().isChangedByClient())
    Thanks in Advance.
    Best Regards,
    Prasad PMV
    PS:Max points will be awarded for any kind of help

    Reply by Thomas Chadzelek 
    I would not recommend to use the changed()/isChanged() methods. They represents "dirty flags" used by our framework in certain situations ("delta handling"). I don't think that applications need access to it, except in certain situations. Anyway, these flags are set whenever an attribute is changed and reset at the end of the roundtrip.
    isChangedByClient() represents a different set of "dirty flags" whose reset is under the application's control. They are set whenever a user changes an attribute (through the Web Dynpro client), but not when server-side code does such a change.
    In NW04, these flags are quite coars-grained. A node element is marked as changed when any of its attributes has been changed.

  • HELP NEEDED ASAP! My iPod mini won't start up or charge

    My mini which i purchased about a little over a year ago, won't start up. When i restart (menu+select), apple logo comes up for 3 seconds, and it dissapears with small "click" noise, and mini repeats this forever.
    When i shift hold button on and off, the out of battery icon shows up, but i can't charge with power adaptor/car adaptor/computer (the charging icon won't show, and it repeats apple logo dispay i described above). i left it charged for 4 hrs, but it still shows out of battery icon.
    I even opened up mini, disconnected the battery, and reconnected the battery again, but it just keeps doing "reboot attempt."
    I've researched, and i tried reboot literally like 50 times, but it keeps repeating the above. i can't restore neither since computer is not recognizing.
    and yes, i tried the battery drain for 24 hrs, and recharging.
    The problem occured when i was listening to mini in my car, connected to car adopter. It froze momentarily (just for like 5 seconds) and then it began to skip the sound here and there (like damaged CD).
    So i rebooted, and it won't turn on eversince.
    I have the latest iPod update, latest OS, and iMac G5.
    I've run out of warranty so i don't wanna send in for repair.
    Somebody please HELP!!!
    (and yes i've already checked the links
    http://docs.info.apple.com/article.html?artnum=61705
    http://docs.info.apple.com/article.html?artnum=60983 )

    If your warranty is expired then they won't send you a new one. That's the point of having a warranty, once it expires then there's nothing Apple can do about it. They give iPods a grace period of 1 year to malfunction, if the iPod does happen to screw up and not a year old yet then Apple does replace the damaged iPod and sends the customer a refurbished one.
    Since you have no warranty you can buy another MP3 player (from Apple or whatever other company you choose). Apple does not sell new minis any more, only refurbished ones which are cheaper than new ones actually.

  • Help needed! connecting 2 ipods to one pc

    does anyone have experience with hooking up 2 ipods to one pc? i have both a shuffle and a nano (which is new and needs to be installed) but i am worried that the pc will get confused if i hook up 2 different models with different stuff on them! can anybody tell me what might happen before i actually try it out myself??? appreciate any feedback on this!! thanks michael

    theres 2-3 main methods for doing this on Windows atleast.
    Method 1 is if you want both to have the same songs just connect them one at a time to the PC
    Methods 2 and 3 are based on if you want to use 2 user accounts in windows or not and are covered in more detail here on the apple site http://docs.info.apple.com/article.html?artnum=300432
    PS if you do decide to use 2 user accounts in windows, make sure you turn off "Fast user switching" iTunes does not play well with this feature turned on in windows

  • Help needed: how to restore windows partition on Mac OS X

    i delete my windows vista partition by accident,anyone knows how to restore it. what software i need? Thanks:)

    If you deleted the partition you'll need to use BootCamp to recreate the partition.

  • [Help Needed] - How to Delete autorun.inf?

    In one of my folders, there is this particular file which I cannot delete called "autorun.inf". I have read in some of the forums mentioning that it is a virus. Most of the solutions are meant for PC.
    However, I can't find any solution to delete this from my Macbook Pro.
    For your info - the sharing and permission for this file is for both "Read & Write" but yet I cannot delete it.
    Please help... thanks..

    It's not a virus.
    I have it in with some Windows Parallels stuff.
    If you must delete it (not recommended) try selecting it then pressing command delete.
    Your admin password is needed.
    Thanks ... Ken

Maybe you are looking for