Do I need to return my mini?

I'm back at this again! Trying to fix my ipod!
It stopped working about three months back...for no reason! I tried everything to get this thing to work...never did and I lost all my music. I now have a folder file with an exclamation point there. I went and got a firewire card. Not helping. I still can't get rid of the darn exclam. mark. I've tried to restore the ipod, but that still does not work; I still get a disk write error.
I've tried to format that drive, but it says there are errors formatting! Does this unti need repair from apple or is there anything else that I'm missing?
Jay

Click here and follow the instructions.
(115451)

Similar Messages

  • I have bought an IPad in the US however need to return in the UK, am i able to receive a full refund? Note: i have removed the outer packaging.

    I have bought an IPad in the US however need to return in the UK, am i able to receive a full refund? Note: i have removed the outer packaging.

    I have no idea if you can do anything with it in the UK. All you can do is ask for help. Just be prepared for the possibility that they can do nothing for you because the device was purchased in the US.
    You may have to contact the store from which you purchased the device in the US to see if you can send it back to them in exchange for the Mini. This assumes you are within the 14 day window and they will accept it without all the expected packaging.
    Beyond that I don't think anyone here can tell you with any certainty what you can do under the given circumstances. All you can do is ask. The worst that can happen is everyone says, "No."

  • What do I need to return with it besides the modem and AC adapter?

    Basically what the title of this post says. I bought my own DOCSIS 3.0 modem and would like to return the one I rented from Comcast. (It will pay for itself in 7 months.) I just want to know which cables and other hardware I need to return with it. I don't know if I'll be able to locate the original receipt. I have the modem, AC power supply, a white ethernet cable, a length of coaxial cable (I think this came with the package because I found an Xfinity branded cable wrap that says "Coaxial" on the tab. But, this may have been used to bundle one of the other cables...), and a two-way splitter. Like I suggested above, The splitter and coaxial cable may be mine outright, I just don't remember. So... What all do I need to return?

    Just return the modem and its power cord/power pack. When they provide Ethernet cables, coax, and splitters, those items become yours.

  • Need help returning correct name from a code created movie clip

    Hello. I am an AS3 n00b with hopefuly a simple question I am designing a simple game in flash. This code creates an array of movie clips and asigns a picture to each one. It is a map screen. What I need is when I click on one of the created movie clips, I need it to return either the index of the clip in the array or the name of the clip. Basicaly anything I can use to tell them apart in the code. Here is the code:
    import flash.display.MovieClip;
    var MapLoader:Array = new Array();
    var strJPGext:String = ".jpg";
    var intContTileNumber:int;
    var strContTilePath:String;
    var intDistStartX:int = 63;
    var intDistStartY:int = 64;
    var intDistMultiplyY:int = 0;
    var intDistMultiplyX:int = 0;
    var intDistCount:int = 0;
    var MapSquare:Array = new Array();
    for (var i:int = 0; i < 729; i++)
             //var MapSquare:MovieClip = new MovieClip();
            MapSquare.push (new MovieClip());
            MapSquare[i].x = intDistStartX + (intDistMultiplyX * 30);
            MapSquare[i].y = intDistStartY + (intDistMultiplyY * 30);
            MapSquare[i].name = "MapSquare" + i ;
            addChild(MapSquare[i]);
            intContTileNumber = i;
            MapLoader.push (new Loader);
            strContTilePath = intContTileNumber + strJPGext;
            MapLoader[i].load(new URLRequest(strContTilePath));
            MapSquare[i].addChild(MapLoader[i]);
            intDistCount++;
            intDistMultiplyX++;
            if (intDistCount > 26){
            intDistCount = 0;
            intDistMultiplyX = 0;
            intDistMultiplyY++;
    stage.addEventListener(MouseEvent.CLICK, reportClick);
    function reportClick(event:MouseEvent):void
        trace("movieClip Instance Name = " + event.target.name);   
    Now all this works fine, it creates the map and assigns the correct picture and places them in the correct X,Y position and it is the correct grid of 27x27 squares. The problem is with the name, when I click on the movie clip, it returns "Instance2" or "Instance5" or whatever. It starts with 2 and then increases each number by 3 for each clip, so the first one is 2, then 5 then 8 and so on. This is no good. I need it to return the name that I assigned it
    . If I put the code in trace(MapSquare[1]) it will return the name "MapSquare1" so I know the name was assigned, but it isnt returning.
    Please assist
    Thanks,
    -red

    Thanks for the resopnse,
    I know I dont really need the name, I just need the index number of the array, but I cant figure out how to get the index name without specificaly coding for it. That is why in the listener event I use event.target.name because I dont know what movie clip is being clicked until it has been clicked on. Basically when a movie clip is clicked it needs to return which index of the array was clicked.
    I could do it this way:
    MapSquare[0].addEventListener(
      MouseEvent.MOUSE_UP,
      function(evt:MouseEvent):void {
        trace("I've been clicked!");
    MapSquare[1].addEventListener(
       MouseEvent.MOUSE_UP,
       function(evt:MouseEvent):void {
         trace("I've been clicked!");
    MapSquare[2].addEventListener(
       MouseEvent.MOUSE_UP,
       function(evt:MouseEvent):void {
         trace("I've been clicked!");
    ... ect
    but that is unreasonable and it kind of defeats the purpose of having the array in the first place. The code that each movie clip executes is the same, eventualy that index will be passed into a database and the data at that primary key will be retrieved and returned to the program. So I just need to know, when one of those buttons is clicked, which one was clicked and what is its index in the array.
    I am a VB programer and in VB this is very easy, the control array automatically sends its own index into the function when one of the buttons is clicked. It seems simple enough, I just dont know how to do it in action script.
    Thanks again,
    -red

  • Need help returning only 1min

    I'm working on a custom Discrete Job Picklist and am trying to return the locator with the least amount of the item that is required to pick. This is working fine except when the minimum is not distinct.
    Here's the bit of code that I'm working with:
    and d.total_qoh = (select min(f.total_qoh)
    from apps.mtl_onhand_locator_v f
    where d.item = f.item)
    This returns the mins but give me duplicates when the mins are the same. I'd like to return only 1 min locator per item. I've tried using a select distinct, but this does not work.
    Ideally, I'd like to use the min(locator_id) to determine which locator to use should the min(total_qoh) be non-distinct.
    I've tried using:
    and d.total_qoh = (select *(select min(f.total_qoh)
    from apps.mtl_onhand_locator_v f
    where d.item = f.item
    order by d.locator_id)
    where rownum = 1)
    But I don't think that order by is allowed in 8.1.6.1 and so it is not working. Likewise, I can't seem to get TOP N to work.
    Any suggestions?
    -Tracy
    Here's the full sql:
    select b.wip_entity_name "Job #",
           d.padded_concatenated_segments "Item",
           d.item_description "Description",
           c.REQUIRED_QUANTITY "Qty",
           e.segment1 "Row",e.segment2 "Section", e.segment3 "Shelf", e.segment4 "Bin",
           d.total_qoh "Qty at Loc",
           d.locator_id
    from wip.wip_discrete_jobs a, wip.wip_entities b, wip.wip_requirement_operations c, apps.mtl_onhand_locator_v d,  inv.mtl_item_locations e
    where a.wip_entity_id = b.wip_entity_id
    and   a.wip_entity_id = c.wip_entity_id
    and   c.inventory_item_id =  d.inventory_item_id
    and   d.locator_id = e.inventory_location_id
    and   d.ORGANIZATION_ID = '5'
    and   b.wip_entity_name >= '70319'--:job_low
    and   b.wip_entity_name <= '70320'--:job_high
    and   e.segment1 is not null
    and   a.status_type in  ('3', '1') --released and unreleased jobs
    and   d.total_qoh = (select min(f.total_qoh)
                        from apps.mtl_onhand_locator_v f
                        where d.padded_concatenated_segments = f.padded_concatenated_segments)
    order by b.wip_entity_name, e.segment1, e.segment2, e.segment3, e.segment4; Thanks for any help you can offer.
    -Tracy

    Richard - this is yielding ora-00904: invalid column. Although I have verified that the column names are correct. I think this may have something to do with not allowing an order by in a subquery for 8.1.6.1 but am not positive. It seems that I either get an invalid column name or missing right parenthesis when using order by in the subquery.
    and d.locator_id = (select locator_id
                           from (select locator_id
                                    from apps.mtl_onhand_locator_v
                                    where d.padded_concatenated_segments = f.padded_concatenated_segments
                                    order by total_qoh desc, locator_id desc)
                           where rownum = 1)
    -Tracy                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Advice on how to access photos on an iPad that were synced from a now failed laptop? The question stems from a need to return my current iPad having just taken delivery of a new unit. Thanks

    I am after some advice on how to access photos on an iPad that were synced from a now failed laptop? The question stems from a need to return my current iPad having just taken delivery of a new unit. Thanks

    If you have a dropbox account, there's a free app (probably more) that syncs photos to your dropbox account - picbox. 
    There's also PhotoSync that syncs photos to/from a number of different services and devices.

  • Received ipad2 synced to itunes and uploaded my backup, now I find out it does not have WiFi 3G and need to return it, is there a way of getting all of my data off the ipad2?

    Received ipad2, synced to itunes and uploaded my backup from my Ipad, now I find out that it does not have Wi-Fi+3G, need to return it, is there a way to get my data off the ipad2 so I can return it?

    if you mean restore it to factory default then you can choose that while having it connected to the computer and using itunes

  • Why do I need to return the old part, if I purchase a new part?

    Well, I had a problem with my motherboard, and got it replaced by an on-site tech HP sent me.
    The notebook is well out of warranty, aand I paid for the new motherboard+labor.
    However, when the tech showed up, he said he won't replace the motherboard unless I give him the old motherboard. He went on to say that this was the "company policy" and he won't let me keep any old part even if I pay for the new part.
    I was too tired t o argue with him, and he replaced the motherboard, and took away the old motherboard.
    On second thought, this is pretty absurd.
    It's like HP telling me "If you purchase a new HP notebook, you'll have to return your old HP notebook back to us".
    It would make sense if I was getting a free replacement and the notebook was under warranty. It doesn't make any sense when the notebook is out of warranty and I'm paying for the replacement part.
    Think of it, when I purchased the notebook, i obviously paid for the motherboard that came with the notebook. So why does HP get to take it away from me?
    If I purchase a new battery from HP store instead of amazon, do I need to return my old battery to HP?
    If I purchase a new keyboard from the HP store, do I need to return my old keyboard?
    I can give you the case number if you want.
    Honestly, if this is the "company policy", I won't ever bother with another HP product again.
    This question was solved.
    View Solution.

    HP only has new motherboards. They sell the bad ones into the Chinese market and they show up on eBay and similar places. You have a new motherboard. If you can tell us the part number of what you bought we can tell you the "full" price and the "exchange" price of the part. They should definitely explain the options to you but I think they likely assume you want the lower exchange price. 

  • Need to return data from a query in different ways - Please help

    We are using 10g R2
    I have a proc as follows that has a query with over 100 values in the select clause:
    proc one( input param1, input_param2,.... output_cursor )
    as
    begin
    open cursor for
    select ...about 100 values with most of them being calculated
    from table1, view 1, table2, table 3, view 2 ...
    where ....
    and table1.col1 = input param1
    and table1.col2 = input param 2
    and view1.col5 = input param5...
    end;
    I need to return the data that comes from the above query in different formats, columns for a report would be different from columns for screen A and different for screen B. I need only certain columns for a report and different set of columns for another screen. I have wrapper procs that get different input params. From the wrapper procs I intend to call the above proc but would like only selected values.
    How can I accomplish this? Since my main goal is to select different columns for each wrapper I was thinking of insert the data from the above proc into global temp table and selecting whatever columns and order I want from the wrappers.
    What do you think? Any other solutions?
    Thanks
    Edited by: user565033 on Jan 21, 2013 7:50 PM

    You need to clearly separate roles and responsibilities. The PL/SQL code that creates and supplies a cursor handle is server code tasked to supply data. The code that makes the call for server data, is responsible for formatting and rendering that data.
    Thus moving data formatting into the server code needs to be question. Simple example. Cursor does not return invoice date as a date - but formats it into a string using TO_CHAR().
    This works for client1 - as that is the date format expected. However, client2 has different International settings and specifies a different date format. Invoice date, formatted into a string by the server, now renders in the wrong format on client2.
    Server code should not be concerned with rendering and formatting of data send to a client.
    As for the idea to use a global temp table is ..., well to put it nicely, it smells. Badly.
    The single most expensive operation on a database platform is I/O. And now you want to read server data and write it to temporary storage, and the read data from temporary storage to return to the client? What on earth for!? Why purposefully increase the size of the I/O workload? Why decrease performance and undermine scalability?
    Provide a proper abstraction interface to the client. Enable it to specify (as simplistically as possible) what it wants ito data. There are a number of ways to design and implement this in PL/SQL. Simplistic example:
    SQL> create or replace package Employees as
      2 
      3          EMP_FULL_DETAILS        constant integer := 1;
      4          EMP_BASIC_DETAILS       constant integer := 2;
      5 
      6          procedure GetEmpByID(
      7                  cur out sys_refcursor,
      8                  empID in emp.empno%type,
      9                  template in integer default EMP_BASIC_DETAILS
    10          );
    11 
    12          procedure GetEmpByName(
    13                  cur out sys_refcursor,
    14                  empName in emp.ename%type,
    15                  template in integer default EMP_BASIC_DETAILS
    16          );
    17  end;
    18  /
    Package created.
    SQL>
    SQL> create or replace package body Employees as
      2 
      3  type TArray is table of varchar2(32767);
      4 
      5  TemplateList       constant TArray :=
      6          new TArray(
      7                  'EMPNO, ENAME, JOB, MGR, HIREDATE, SAL, COMM, DEPTNO ',
      8                  'EMPNO, ENAME, JOB '
      9          );
    10 
    11  procedure GetEmpByID(
    12          cur out sys_refcursor,
    13          empID in emp.empno%type,
    14          template in integer default EMP_BASIC_DETAILS
    15  ) is
    16          sqlSelect       varchar2(32767);
    17  begin
    18          sqlSelect :=
    19                  'select '||TemplateList(template)||
    20                  'from emp where empno = :empID';
    21 
    22          open cur for sqlSelect using empID;
    23  end;
    24 
    25  procedure GetEmpByName(
    26          cur out sys_refcursor,
    27          empName in emp.ename%type,
    28          template in integer default EMP_BASIC_DETAILS
    29  ) is
    30          sqlSelect       varchar2(32767);
    31  begin
    32          sqlSelect :=
    33                  'select '||TemplateList(template)||
    34                  'from emp where ename like :empName';
    35          open cur for sqlSelect using empName;
    36  end;
    37 
    38 
    39  end;
    40  /
    Package body created.
    SQL>
    SQL> var c refcursor
    SQL>
    SQL> exec Employees.GetEmpByID( :c, 7499 );
    PL/SQL procedure successfully completed.
    SQL> print c
         EMPNO ENAME      JOB
          7499 ALLEN      SALESMAN
    SQL>
    SQL> exec Employees.GetEmpByName( :c, 'A%', Employees.EMP_FULL_DETAILS );
    PL/SQL procedure successfully completed.
    SQL> print c
         EMPNO ENAME      JOB               MGR HIREDATE                   SAL       COMM     DEPTNO
          7499 ALLEN      SALESMAN         7698 1981/02/20 00:00:00       1600        300         30
          7876 ADAMS      CLERK            7788 1987/05/23 00:00:00       1100                    20
    SQL>

  • What equipment (HTC Imagio) do I need to return with the cell phone?

    Hi,
    I took a one month global travel program Imagio phone, and now need to return the equipment for credit. However, I can't recall all the pieces that came with it. So far, I have the htc imagio phone unit, along with the following:
    one connection wire
    one unit (the charger?) with a 2-prong plug built into it
    one htc unit (adapter?) also with a 2-prong plug built into it
    a teeny-teeny-tiny screwdriver
    Does anyone know if I am missing any part? Sorry my memory is so lame. I know, I should have written it down! My bad.
    Thanks, VeeMar

    Just return the modem and its power cord/power pack. When they provide Ethernet cables, coax, and splitters, those items become yours.

  • I need to connect I-Mac G5 to HDMI TV, I think I need this: Video Out: mini-VGA (mirror only) to HDMI, where can I buy? Apple Bluewater no help.

    I need to connect I-Mac G5 to HDMI TV, I think I need this: Video Out: mini-VGA (mirror only) to HDMI, where can I buy? Apple Bluewater no help.

    VGA is an analog signal HDMI is digital. A simple cable would not work you would need something that converts the analog signal to digital.
    A search of VGA to HDMI turned up a few possibilities but nothing specific. In any case the picture on the TV will not be very good given the source.
    You should check to see if the TV has a VGA input. Some TV's have a computer connection port and this is usually VGA. 
    Message was edited by: Frank Caggiano - I'll ask the hosts to move this to the proper community.

  • I bought a new ipod today and i can not get it to connect to my mac oe my itune account it say s i need ituned 10.4 so i tried to download it, it then says i need mac osx10.5 so i tried to down load it but it says something else do i need to return it?

    I bought a new ipod touch today. I tried to install it and it says i need itunes 10.4 so i tried to download that, it said i needed mac os x 10.5 so i tried to down load that it gave me another message. how do i get my new ipod  onto my mac? Or do i need to return the ipod?

    New iPod Touch devices require a minimum of Mac OS X Leopard 10.5.8 in addition to a fairly recent version of iTunes. If you are running Tiger (10.4) or earlier, you can't just update to Leopard for free; you have to buy it.
    http://support.apple.com/kb/ht1447

  • Do i need a genuine apple mini display to hdmi port?

    considering putting the display from my macbook pro (2011) to my tv and i was just wondering if needed a genuine apple mini dispaly to hdmi adaptor or if i could buy a third party one?
    cheers

    Andrew Wolczyk wrote:
    Never had a problem.
    I believe you, but that's a sample of one. I and others have had problems and as the adaptor is such a small fraction of overall cost I standardized on the Moshi, from the Apple Store and now have no problems, I use these installations in bars, and there are over 30 of them so for me consistency matters, and the screen/macmini costs way more than the adaptor/cable combo.
    Read the many posts on this subject, a search on Moshi will reveal them as it is regularly recommended in this forum.
    And as your adaptor works so well, how about identifying it for others?

  • Need to return the fieldnames from an acess database

    I need to return the fieldnames (column headings) from an acess database.

    What drivers are you using to access the database. In ADO it's very easy - in fact it's almost a side effect of getting our data. If you're using the Database Connectivity Toolkit, I don't know. Check out this thread for alternate code. The example "Basic Query.vi" in the zip file I uploaded shows the basic process that you go through to read data using ADO. You'll notice that the column names are very easy to get to.
    Mike...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps

  • Grreat potential, but I need to return it....

    I really like the AppleTV for it's size, capabilities, and ease of use but it has a fatal flaw for me that means I need to return it.
    With over 700 ripped-DVD's in my iTunes collection, plus > 40 Gigs of music I never get any of my iphoto collection onto the box which means that the default screen saver shows the default Apple images loaded onto the system rather than the ones of my grand-daughter we want to see. To state that my wife is unhappy with this one problem would be an understatement, so unless someone can explain how I can force my iPhoto Library in place it's back to the MythTV box for me.
    Thanks,
    Graham
      Mac OS X (10.4.9)  

    I don't think that is accurate about the number of photos that you can get on the Apple TV, I think you can get your full collection or very close. I comfortably have 14,000 on my Apple TV. I didn't think they would fit but it appears there might be some kind of compression going on as they move to the Apple TV, which may explain why it takes a LONG TIME to sync photos. Start it and go to bed or to work (and check on it when you get back, it may not be done - ha ha). By the way, I suggest clearing off all other content (with exception of a few of your favorite music files which you can use to play along with your photo slideshows). I had exactly the same reaction as you initially when I realized the photo situation. However fortunately the syncing works so well that is fully reasonable to keep movies and majority of music on your computer and use Appled TV hard drive only for photos and a little music. Try it before you give up on it. Wifey will be happy .

Maybe you are looking for

  • Changing my info?

    OMG why can't I find a way to change my default email address? I remember I made changes to my Apple id when I moved a year ago including my physical address and it was all reflected in my MacBook registration info as well as on here. Now I can't eve

  • Play counts not updating on iMac

    Updated to iTunes 11.  My play counts are fine from my iPhone and an old iPod (still use iPod Photo in my car) as well as my iPod Nano.  But if I listen to my music on my iMac it doesn't update play counts. I am using iTunes Match as well, if that ma

  • Navfree GPS UK won't sync to my iphone!

    Hi guys, I've recently downloaded the app on itunes on my laptop, but when i try to sync it with my iphone, the app doesn't sync. A message appears, saying "1 item could not be synced. See iTunes for more information. I've checked on iTunes help and

  • DbKona and large resultsets

    Hi, I'm working on a application that will allow a user to run ad-hoc queries against a database. These queries can return huge resultsets (between 50,000 & 450,000 rows). Per our requirements, we can't limit (through the database anyway) the number

  • Initialise waveform array of 10 elements

    Hi all, I would like to create an array of 10 waveform datatype constants to pass into a structure.  Once passed in, 9 of these elements will be extracted and then another added after which the new 10 will be graphed.  Hopefully this will effectively