Work around passcode? help!

My dear friend died suddenly and left me his new ipad2, but I can't find his passcode anywhere. I am the executor of his estate and have been thru all his things.  Any way to work around this problem?  Really need help here, thx!

There is no way to work around the passcode. The iPad will have to be restored, preferably on the computer to which it was synched. If you restore it on another computer the iPad data will be lost.
See http://support.apple.com/kb/ht1808 on how to put the iPad into recovery mode if necessary.

Similar Messages

  • I want to reset my ipod touch 4th gen but i have forgotten the restrictions passcode and for some reason its not working on my laptop on itunes and the restore thing wont work! any help?

    I want to reset my ipod touch 4th gen but i have forgotten the restrictions passcode and for some reason its not working on my laptop on itunes and the restore thing wont work! any help?

    Make sure you have the Current Version of iTunes Installed on your computer
    iTunes free download from www.itunes.com/download
    Then See Here  >  http://support.apple.com/kb/HT1808
    You may need to try this More than Once...  Be sure to Follow ALL the Steps...
    Take your time... Pay particular attention to Steps 3 and 4.
    After you have Recovered your Device...Re-Sync your Content
    Note:
    To remove a forgotten Restrictions passcode you will need to  Restore the Device as New...
    OR... From a Backup created Before the Restrictions Code was set....

  • FM hypertext doesn't work - work around in RH doesn't work... need help!

    I am working in TCS2 in Windows XP. I posted this in the RH discussion too... I hope that is OK that I put it here as well (hoping to reach the correct audience somehow!)
    I am trying to single-source things. So I have created a huge doc in FM. Within FM, I have hypertext links to openfile a PDF (which works just fine in FM, and when I generate a PDF it still works nicely). Then I import into RH and those hypertext links don't work anymore. So I created my own little work around:
    Went to that place and coded the FM hypertext as PRINT
    Added a hypertext link (coded as ONLINE) that will jump to the required destination in the online help files
    Works beautifully. But b/c I am single-sourcing (I think) whenver I make changes in the FM files and I have to update the RH files, the manual changes I've made to the RH files (as above) disappear. That is not going to work for me... I cannot do that manual work around everytime I update... too hard to remember, to time consuming, etc. etc.
    Here is ultimately what I need:
    -the PDF link to work in FM (which it does) - usable in PRINT generation
    -a RH link which jumps to that location in RH - usable in ONLINE generation
    Suggestions?
    Thank you!
    Adriana

    Hi there
    Could it be as simple as the setting in the RoboHelp HTML Single Source Layout of "Mark Of The Web"? (MOTW)
    With MOTW enabled, links to local files such as PDFs don't work. At least when you test using Microsoft Internet Explorer.
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7 or 8 within the day - $24.95!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • Can't do ISAKMP & fixup protocol esp-ike. I need a work-around HELP

    I have a pix where I have the "fixup protocol esp-ike" enabled. In this pix, I am trying to set it up as VPN Lan-to-Lan, so the first line I try is "isakmp enable outside", but as soon as I type it, it tells me
    ISAKMP cannot be enabled since fixup protocol esp-ike is enabled. Please correct your configuration and re-issue the command
    I read that NAT-traversal can perhaps fix this, but I already tried it. I typed "isakmp nat-traversal 3600" and it went OK. I then tried the "isakmp enable outside" again but it gave me the same error message
    So I don't know what to do at this point
    any help please?
    thanks

    No, PAT is not being used in my pix. Only NAT. My pix 506e acts as a NAT device.
    I have read that the 2 commands aren't compatible, so I was asking if there is a work-around that someone can help me with?
    thanks

  • Help for optional way to work around Flash on my page?

    Hi all:
    I apologies for my English because is not my first language but here is my story:
    I created a Website for the company that I work in Dreamweaver and everything it working great but on my first page I created a introduction animation on flash and works perfect on all browsers, my problems start wend my boss decide to check the new website in his Iphone, the first page don't display a small icon of plug-in show on the screen.... later i make a search in this forum and discover that safari for Iphone won't support flash .... Later i observe that other websites work around flash for non-flash users adding a image on the back of the flash animation then i believe there is  a script that reads wend a user don't have flash plug in  and display a plane image with a link for the next page...
    Do anyone that experiment this problem that knows a solution to this, can give me a hand and show me step by step how to solve my problem????
    Thanks  for your time
    Gracias por su tiempo
    Luis
    here my first website
    www.polyplus.com

    Luis,
    see if the solutions here may be of some help:
    http://stackoverflow.com/questions/449808/providing-alternative-images-if-adobe-flash-isnt -available
    I used the term:  'image instead of flash if flash is not available"  in google to find it...  do a search using that term and you'll find more  :-)
    Nadia
    Adobe Community Expert : Dreamweaver
    Unique CSS Templates | Tutorials | SEO Articles
    http://www.DreamweaverResources.com
    Web Design & Development
    http://www.perrelink.com.au
    http://twitter.com/nadiap

  • Query help. Any work around?

    Hi To all,
    Help me on this query.
    Table1 : seating_layout
    Columns(1) : Seat_no values 50 records i.e.. 1,2,3..50
    Ex. Data :
    1
    2
    3.. upto 50, i.e total 50 records
    Table : Quotas
    Columns(2) : seat_no_from, seat_no_to
    Ex. data :
    1 5
    8 13
    I need a query which gives values in a DYNAMIC RECORD GROUP in FORMS6i as below
    1,2,3,4,5,8,9,10,11,12,13. i.e. total 11 records.
    Im using Version Oracle 8i, Forms 6i. is there any work around to get the result.
    Thanks in advance.

    select map_name,data_entity_name
    from ALL_IV_XFORM_MAP_COMPONENTS
    where operator_type = 'Table';
    or
    /* SOURCE - TARGET */
    http://www.nicholasgoodman.com/bt/blog/2005/04/01/owb-sources-and-targets-sql/
    select
    distinct 'TARGET',
    comp.map_name,
    comp.data_entity_name,
    comp.operator_type
    from
    all_iv_xform_map_components comp,
    all_iv_xform_map_parameters param
    where
    lower(operator_type)
    in ('table', 'view', 'dimension', 'cube')
    and param.map_component_id = comp.map_component_id
    and param.source_parameter_id is not null
    UNION
    select
    distinct 'SOURCE',
    t1.c1,
    t1.c2,
    t1.c3
    from
    (select
    comp.map_name c1,
    comp.data_entity_name c2,
    comp.operator_type c3,
    max(param.source_parameter_id) c4
    from
    all_iv_xform_map_components comp,
    all_iv_xform_map_parameters param
    where
    lower(operator_type) in
    ('table', 'view', 'dimension', 'cube')
    and param.map_component_id = comp.map_component_id
    group by
    comp.map_name, comp.data_entity_name, comp.operator_type) t1
    where t1.c4 is null
    order by 2,1

  • Daily Notes passcode forgotten anyone know a work around to get into the application ?

    I have forgotten the passcode to access the Daily Notes Application anyone know how you can reset or a work around to get into the application to reset the passcode.  ?
    Thanks

    Looking at their website (assuming it's the Daily Notes +To Do app) it says on the passkey protection screenshot on http://www.fluidtouch.biz/dailynotes/screenshots : 'Caution forgotten passkey cannot be recovered'
    When did you set the passcode i.e. was it on the app when you last backed up the iPad on your computer's iTunes ? If not then you could restore the iPad to that backup (you can't restore an individual app). Otherwise if you can't remember the code then it looks like you'll need to delete the app, re-download it, and start from scratch with it.

  • Does anyone know of a work around for this problem? : iphone 5 will not work on Chryslers uconnect.  I found out that they are working on it but have no ETA.   However, they will not help you if your vehicle is older thatn 2008.

    Do not get an iphone 5 if you want to use it with a Chrysler product.  The Chrysler Uconnect system might pair with your phone but the uconnect system will usually abend and become unusable after a few telephone conversations.  I have been to the dealer twice.  They have reset the uconnect system twice and I find it works for about 2 to 3 phone calls then it abends and uconnect becomes useless.  They had me call Chrysler at 1-800-247-9753.  I was told that the iphone five is not compatable at this time with any chrysler uconnect phone through the dash system, even the new vehicles.  He had me get on this web site: www.uconnectphone.com as a place to monitor as when it would be compatable.  They told me that Samsung seems to be working harder to make it compatible than apple is and they had no idea when it would begin to work.  In effect Chrysler was telling me dump the iphone and get a Samsung if you want it to work in a Chrysler.  Also, the site would only give you information for Chrysler that were 2008 or newer, they gave the following number to call if your vehicle was older.    I called that number and they told me that Chrysler and Uconnect had no plans at all to make the iphone 5 work, in the future, on any Chrysler older than 2008.  So.......If you have a Chrysler or Dodge that is older than 2008 you will NEVER  be able to use an iphone5 on the uconnect through the dash system.   Do not buy an iphone if you have an older vehicle.  It will never be supported for the $1,000 you paid for this uconnect system on your car.  My car is a 2005 Town and Country.  I asked both Chrysler and uconnect if their was some sort of work around so I could use my phone.  They both told me their was not and that they had no plans to resolve this situation for my vehicle.  This means that I need to either get rid of my $42,000 vehicle with low milage or get rid of my Iphone 5.  Niether are really good options. 
    I was also givne the following places to send formal complaints, even though I was told that neither Chrysler, Dodge or Apple were going to do anything to correct my problem: 
    for email:   [email protected]   or Mail:  Chrysler customer Assistance  P.O. Box 218004, Auburn Hills, Michigan  48321
    If anyone hears of a work around to be able to use an Iphone 5 in a Chrysler or Dodge product, please let me know. 

    This response is a little late as I just read about your problem. I have a 2012 Dodge Charger and a 2012 Chrysler Town and Country and both worked flawlessly with the iPhone 5s my wife and I had. However, we just upgraded to the iPhone 6 and Uconnect will receive calls but you cannot answer them. You can callout successfully, however. the annoyance being the inability to answer incoming calls in the HandsFree mode.

  • I have a 3rd party "TPLink ADSL wireless" router controlling DHCP , Now require Airport Basestation and Timecapule to merely join the existing network. I know this was a work around once posted, but can't find it again? Help....

    I have a 3rd party "TPLink ADSL wireless" router controlling Internet and DHCP , Now require my (Airport Basestation and Timecapule) to merely join the existing network. I know this can be done but it was a bit of a work around the automatic setup. The autmatic setup only offers (Create new/WDS/Extend) Does anyone know how to do it, or can point me to the post.
    Many thanks

    Unfortunately, I need to connect both devices (Extreme and Timecapsule) via wireless. The ADSL router is not conveniently located to allow me to cable them directly. They are both being used to drive a bank of non networkable printers and external harddrives via the USB ports on each.
    My frustration with myself is I had it setup, but failed to record for future, the trick in how to unhide the "join network option". I then had a failed firmware update from Apple and then needed to reset the routers and bang the settings were gone.
    The Security setting is not an issue I know those I am using WPA2 personal.
    I would be grateful for the wireless setup if you have it handy...
    Thanks do much

  • Work Around Help: Apple RAID Card & Boot Camp

    -Hello and thanks for taking the time to read my post and possibly provide me with a solution.-
    I have the newest Mac Pro (early 2009) and the apple RAID card.
    I want to be able to run boot camp with winXP, but it appears from talking with tech support that the 3x SAS 15,000 rpm drives (RAID 5 config) with the RAID card does not support boot camping. I guess the RAID card is still unsupported through windows/boot camp?
    I have a 1tb 7200 rpm drive spare.
    Is there a work around to get boot camp to run natively (no virtual machines via Parelles or VMware Fusion please) on my computer? What options for running boot camp do I have?
    Can anyone out their solve my issue?
    Kind regards,
    Will

    Is there a work around to get boot camp to run natively?
    Hi,
    Unfortunately, Apple does NOT support Boot Camp when the Apple RAID card is installed.
    What I would suggest is to remove the Apple RAID card and insert a SATA hard disk into the Mac Pro. At this point, you can install Mac OS on it (using the Apple DVD) and then Boot Camp.
    I know this is not the solution you are looking for but its the best I have
    This is why I did not purchase the Apple RAID card and I cannot recommend it to users that would like to install Boot Camp.
    Have fun!

  • I have an Iad2 and ever since ios6-there are issues.I get occasional lock-ups and have to reboot. The WSJ app freezes when running their videos to the end. The only work-around is to stop the video before it's over. Worse than windows me !!!!!

    My Ipad2 worked perfectly before ios6 upgrade. It now freezes occasionally and I have to reboot to get it to work. Also the WSJ app will now freeze if I try and run one of their videos that is imbedded in the article. My only work-around is to stop (press done) before the end of the video or I have to do a total reboot. The problems remind me of Windows ME . Will Apple resolve these issues or become more like Microsoft. Hopefully there will be a restore button in the future like Microsoft was forced to do because a lot of upgrades are just terrible. Am I crazy or are there other people having the same issues with ios6, or could this just be a coincidence and my ipad2 is starting to fail just when ios6 arrives ?

    I know this will not help but, the bluetooth headset I purchased for my wife works great and it pairs with our car and our sound bar in the livingroom (Motorola Droid Razr) 98.72.16.XT912.Verizon.en.US
    However I did not upgrade over the air but from a android web site and placed it on my external sd card. I believe this made the difference in why we had no issues and upgraded functionality has been great.
    Please note when I mention these bluetooth devices I mean the Razr connects with no problems.
    It also had no internet issues and none of the problems others have complained about in other threads.
    unfortunately when you say thousands have these issues I cannot say that is accurate. The hope is when large numbers of owners have updated to the Jelly Bean and are complaining inmase then Motorola will issue a patch to verizon to get out to the affected users.
    Of course now that Google owns Motorola Mobility and has laid off loads of workers it may never issue an os patch.

  • Insane XML Import, Huge Project, Duplicate file names work around...

    I planned on kicking off my journey attempting to edit a massive multi year documentary on FCPX with a nice introduction of the blog I'm going to keep about the experience, but I've run into a bit of a roadblock, or maybe major speed bump at least before even getting to that point. I wanted to share what is working as a work around for me and you guys can tell me how I'm doing it wrong.
    Ok, I will try to explain this as succinctly as possible. I'll write in somewhat stream of consciousness just to try and get through it quicker... Basically, after discovering the work around below, I am now utterly confused on how FCPX handles the relationship between its own database of where media is stored, and the actual media itself. I have plenty experience on FCPX now, probably done 30-40 pro commercial jobs on it over the last year since XML became doable as I'm also a Resolve Colorist and all the FCPX projects where hardcore coloring product spots. For commercial work, I never needed to worry about splitting up footage up over multiple Events. Everything, all in one, FCPX handled it no problem. (well the occasional beach ball, but that seems to be a thing with FCPX in general)
    This will be my 10th feature documentary as an Editor. Every one before it was either on Avid's many flavors over the last 12 years or FCP Studio. When this new film came along, I made the decision a few months ago to use FCPX for a few reasons, but mostly because I'm insane and I like to try to mix it up for myself in a career that can get stale quick if you aren't willing to be that way. The film was shot over 2+ years, every shoot was multi cam 5D (yes i know, looks great, but please kill me), I haven't done the math on length, but there is over 10,000 clips of video (this is actually medium in size compared to what I've dealt with before). Its 5D, so theres external audio for everything. FCPX's syncing is great, but I've learned that theres an unsaid window of heads and tales clips must fall within to sync properly with the nearby clips, if they are too far apart FCPX gives up. One shoot day could have 3 cams, 50 clips each, and 2 audio files to sync to, FCPX simply cannot handle this, so off to Plural eyes they went, no problems.
    Ok, all this is relevant eventually I swear! Again, in the past, all in one event, no problem. I tried for fun to bring all media into one Event on this film. It worked, but there is a 10+ second spinning beach ball for every single move you make, so thats no good. Ok, I'll separate the Events out to, lets say, each shoot month. Well that's dumb, in verite documentary, any shot could be the first, any shot could be the last, you need a command over all searchable footage at all times. Shift selecting all events to search *****, and it actually takes longer for FCP to reload each event each time than it does to just have the one massive one. So no go there. Next hair brained idea... What if make a new Event that is just Compound Clips of all the other Event's contents and do more with Markers and Favorites in logging that I was planning to parse it all out. That way I'm working with and FCPX is dealing with 50-60 clips instead of 10,000+ Quick test, Cmd-A, Opt-G, boom, boom, boom, move all to dedicated to Event, hide huge Event, BEHOLD, that works! FCPX chokes a little bit on the insane length of some of the clips, but searching, and general performance is back on par!
    So your saying to yourself "Ok *********, sounds like you figured it out, what's the problem." Well to you I say, "Not so fast!" Remember, that was just a quick test using the media I had imported into the massive 10,000+ clip Event. To do this project proper, I am having to import Multicam sync'd XMLs from Plural Eyes. And this is where it all starts to fall apart. A little foreshadowing for your eager eyes. 10,000+ files all shot with multiple 5D's over the course of years. What does that mean? many, many duplicate file names!
    FCPX as well all know irritatingly imports XML's as new Events, not into existing ones. This obviously takes a lot of burden off media management because with a new Event comes a new database referencing its own version of the raw media. All well and good, and I'm betting its starting to click for some if you advanced users where I'm finally going with this. So I have 50 or so XMLs to bring in, all done no problem. Now I want to replicate that singular Event like I did with the Compound Clip test and have it all in one place to be my master as extensive logging begins for easy searching once editing begins. Highlight the Events, click Merge Events. NOPE. I get a new "Kill Yourself Now" error (a term I coined for Out of Memory and General Error messages in FCP Legacy meaning there ain't much you can do about it): "Two or more files have the same name. Change the names and try again, because I don't know what the **** to do with them." Ok I made up that last part but that's basically what it's saying. Just take the variable out of the equation, this happens with every which way you could try to get the clips together. Merge Events, dragging events on top of each other, dragging just the Multicam clip alone, nothing gets passed that message. What's worse is that while Batch Renaming seems like a solution, the renames do not populate inside the created clips and there is no way to Batch Rename those. Renaming everything at the finder level isn't so great because then I'd have to resync and theres an offline/online thing going here where the film has to be reconformed eventually.
    Basically, I've found that FCPX handles media management in completely different ways depending on whether you are importing into one Event yourself or doing essentially what is a new import with FCPX moving or merging Events. If you bring in all the media to one Event, on a macro level FCPX goes through file by file making aliases referencing the master file. If it hits a duplicate, it makes a parenthesis counter, and keeps going. And with the genius of FCPX metadata, that file name doesn't even matter, you can change it at the Finder level and FCPX will keep the link intact. BUT for some reason if you try to do this outside the realm of a single Event and combine files after the fact a different process takes over in creating this database system and can't handle the duplicates. I can't totally figure the reason other than it probably is scared to change the originally referenced alias to something else (which it shouldn't be scared of since Merge Events deletes the original anyway).
    This is where it gets INSANE and where I lose all understanding of what is going on, and believe me it was a delicate understanding to begin with. It comes in to play with the work around I figured out. I make the master Event with the 10,000+ clips. Then I import all the XMLs as dedicated Events. Now, I then drag the Multicam clips into the master Event, it WORKS! just takes it, no "Kill Yourself Now" error. Stranger still, now with the switched referenced Event, it even takes into account which aliased duplicate file name it's referencing in the Original Media folder. Somehow, it's taking into account the original file path and saying "Ok, I see 5 instances of MVI_5834.mov. Based on the original file path or maybe creation date or god knows what, it must be MVI_5834 (fcp3).mov." It connects perfectly. I can even remove the old XML imported Event with no problem. Crazier yet, I can now move those again to the dedicated Event I wanted originally that only contains those Multicam or Compound Clips.
    So instead of going straight from A to C, going from A to B to C works even though that actually seems way more complicated. Why can't FCPX handle Merge Events and dragging clips the same way it handles media imported into a single Event. And weirder still, why can't FCPX handle the (fcp1,2,3...) appending in the same scenario. But if the appended links are already there, No Problem. And for the love of god, it'd be nice to important XML's into existing Events and make the correct referencing happen right from the get go, which is really the source of all the above headache. I'd have no problem helping FCPX with a little manual pointing in the right direction just like any other NLE needs.
    Ok, having said all of that crap above, my question is, have I missed something completely simple I should have done instead? Now that I have everything in place how I originally envisioned, I think I will still play around a little bit more to make sure FCPX is really going to be able to handle this project. I'm at a stage right now where going another direction is still an option, although the dare devil in me wants to make this work. Media management aside, once you start editing on a FCPX timeline, its hard to go back to anything else. Apple is going to have to figure out some way not to access to everything at all times to work fluidly or big projects like this are never going to be practical in FCPX.
    Sorry for the long confusing post....

    I'm having the exact same problem, but I know nothing of ruby scripts. I've exhausted my resources with tech support, and after literally hours of work with them it seems I now am faced with either re-rating each individual song, or pointing iTunes to each song that it can't locate. Is yours a solution that could help me? How can I find out more about Ruby Scripts? Thanks for your help, hellolylo (or anyone else who might also be able to help...)
    Kenn

  • Syncing of Apps and a Work Around I Thought Of

    (this is an excerpt from a previous thread which was not answered - if you could kindly help me out with this and offer your expertise it would be greatly appreciated. Thanks!!)
    Hi All,
    I know this will be quite a change of tone from what you've been getting so far here in this thread, but I want to start of by saying thank you, for all the help and guidance you have been and are giving us. I greatly appreciate it.
    I have a question on apps folder structure upon restoring from backup. I will share with you the chronology of events, what I understand, what I hope to achieve and what ways I think this can be achieved. By sharing with you my whole thought process, I hope to get your critique and correction if at any part I have misconstrued the logic. Thanks in advance again.
    I have 2 iPhone and 2 iPads. When I bought my first iPad (brand new) I plugged it into iTunes and did a restore from my iPhone 4G backup. I believe I selected "Sync Apps" (though I can't confirm now cause I formatted my computer already) because all my iPhone apps were synced to my iPad - which is great. Q1 --> Because I restored from my iPhone 4G backup which presumably had "Sync Apps" checked, I believe my first iPad's iTunes syncing options also had "Sync Apps" checked as well - reason is that all the "Music", "Movies" and "Photos" options were also transferred over. Am I correct? Thanks
    So for the rest of the post, I will assume the iTunes setting for my 1st iPad was set to "Sync Apps" (until you correct me otherwise).
    My computer was running a bit crappy --> Windows, I know haha, so I formatted it. I did not save my backup file to an external harddrive and then put it back into the %appdata% iTunes Mobile Sync folder. Therefore after formatting, I plugged my iPad into the new computer and did a backup. Because (if I remember correctly, - (Q2) please correct me if I am wrong) it sensed my iPad as connect to a previous iTunes it asked me if I wanted to disconnect from the previous iTunes and sync to this one cause I do know that we can only sync to one iTunes at a time. I had to re-configure all my "Music, "Movies" and "Photo" settings again as this was a new iTunes configuration - which I do understand. Q3 - if I have a new iTunes because I formatted my computer, but I ported over the old backup file and restored my iPad from there, would it still be considered a new iTunes link and thus I have to configure everything again? I don't think so cause the backup contains all the settings; what I think will happen is that I will just be asked if I want to disconnect from the old iTunes and connect to the new one, and all my settings will be restored from the backup.
    So I synced my "Music", "Movies", "Photos" and also "Info" and "Podcasts" (I don't use "TV Shows") and got it all set up. Only thing I didn't tick was the apps - perhaps cause I didn't take the time to understand it previously owing to the fact that I didn't need to then ha, but now I do!! So after everything was synced, I did a backup. After reading your thread, and the link you gave, I understood that I have to transfer purchases from my iPad because my iTunes had no apps - as it is a "new iTunes". So I transferred my purchases.
    Next I joined my 2nd iPad (second hand iPad) and did a "Restore" (If you are experiencing problems with you iPad, you can restore its original settings by clicking Restore.) to wipe out apps etc that the previous owner had. Q4 - what is the difference betwixt the "Restore" in iTunes below "Check for Update" and the iPad's "Settings" --> "General" --> "Reset" --> "Erase All Content and Settings"? I believe (with some experiments ha) the "Restore" in the iTunes will give me a "brand new" iPad but I don't know what is the difference betwixt that and "Erase All Content and Settings".
    I then restored from the backup of my 1st iPad. But remember just now I mentioned that I did not tick the "Sync Apps" in my 1st iPad's settings? So after the restore was done, I had all my "Music", "Movies" and "Photos" + "Podcasts", "Info", everything but my "Apps" --> because I didn't tick "Sync Apps" in my backup. So my 2nd iPad had everything but "Apps".
    Now I need to rectify that and create a mirror of my 1st iPad. I don't jailbreak my iOS devices and all my Apps are bona fide purchases with my hard earned money . Here is the solution I thought of and the single problem I face.
    Solution: On my 2nd iPad, click Sync Apps, select all the apps I want in my iPad, and then click Apply. Then I restore the backup of my 1st iPad. That restores all my app data and very importantly, my folder structure (cause when we have a lot of apps and we organise it all into folders, re-putting them back into folders can be quite time consuming; quite the antithesis of computing in the first place).
    This truly give me a mirror image of my 1st iPad (please kindly correct me if I am wrong). The only problem is that, the Sync Apps is still not ticked. Q5 - Is there any benefits of my ticking "Sync Apps" vis a vis doing it this work around method? (Update: I thought of something - "Sync Apps" would allow all the apps on my iPad to be automatically synced to my iTunes but for my work around, I need to think of all the apps I want on my iPad and tick them. If it is for example 50 out of 50 apps, it's simple. But if it's 50 apps out of 150 apps in my iTunes then it would be a big headache. Any other benefits / costs?) My "File Sharing" is still working ok - in the sense I can still transfer data to my apps without having it synced (thankfully it is not sync dependent - but please once again correct me if I am wrong).
    The reason why I do this work around method is because if I were to click "Sync Apps", it would get all my apps into my iPad but it would destroy all my folder structures. Q6 - however if I do this "Sync Apps", when the apps are transferred to my iPad I would have all the app data on my iPad already right? Because I postulate it work on a n-tier abstraction separating data from the app. I think this is true because previously I restored from backup and had some apps missing, but when I downloaded the app all the data was "magically" there.
    Q7 - is there any way to maintain apps folder structures when I am syncing to a new iTunes instead of the work around I have thought of?
    Q8 - and last question haha. My iPad has 10 3rd party apps now for example. If I backup now, it would backup the app data of all 10 apps (3rd party apps - notation left out for simplicity sake moving forward). However if I deleted 2 apps from these 10 apps, then if I backup the 8 apps, would it mean that the backup no longer stores the 2 deleted apps's app data? I think that would be the case but I would just like to confirm.
    Thank you for reading my very long post and I really appreciate all your help, Allan and all others. Looking forward to your advice, guidance and response!! Thank you once again!!!
    P.S. does iTunes lag quite a bit in Windows (if you are a Windows user)? For me it's not the quickest programme around; can get quite laggy sometimes, on my newly formatted and empty 64 bit 4GB Dual Core 2.4 GHz HP TX2 and Acer computer as well

    If you restored to factory settings/new iPod and still have the problem that indicates a hardware problem.
    Make an appointment at the Genius Bar of an Apple store..
    Apple Retail Store - Genius Bar

  • 10.4.9 Printing Work-Around Fix - 10 Steps

    VonB has already listed a fix in this thread.
    http://discussions.apple.com/thread.jspa?messageID=4234084&#4234084
    Unfortunately the links he provided there are for a paid site, and if you don't have a membership you're outta luck. I've taken his info, used it and written what I think are clear instructions to help you be able to print in 10.4.9 until Apple releases an update patch. Special thanks to Vonb for pointing me in the right direction.
    Hope this helps...
    Jim
    10.4.9 Printing Work-Around Fix - 10 Steps
    Problem - Many programs will not print in OSX 10.4.9.
    What This Fix Does - Allows you to print in TEXT EDIT. You can then save MS Word files as Text Edit files and print them. Hopefully a fix will soon be released by Apple for OS 10.4.9 or MS for office 2004.
    What This Fix Does Not Do - It won't allow you to print in MS Word if you currently can't, and it won't allow Appleworks to work if it currently doesn't.
    Difficulty - easy to moderate. Can you paint by numbers or do you tend to draw outside the lines? If you follow the directions closely you'll be ok.
    Disclaimer - I typed this fix out for myself and have applied it to my 5 personal macs and 4 at work. It hasn't crashed any of them, but I don't want you to get ****** off at me if it does... so if you screw your mac up by doing this don't say I didn't warn you. This fix isn't for newbies.
    Time to complete - about 1/2 an hour.
    Special Instructions -
    A. You'll need to be logged in as the administrator of the computer you're working on. I've written this help missive in real plain language. If it seems like I'm speaking down to you I'm not, I'm just trying to make sure you don't screw it up and send me nasty emails.
    B. Check to see if TEXT EDIT already prints for you, if it does then skip to #10. (TEXT EDIT can be found in your APPLICATIONS FOLDER on your Macintosh HD.)
    OK... here we go, THE TEN STEPS! (cue dramatic music)
    1. Delete all of your printers in the PRINT & FAX set up in SYETEM PREFERENCES by following this path - BLUE APPLE / SYSTEM PREFERENCES / PRINT & FAX. If the plus and minus button on the bottom left of the dialog window that appears is grey'd out, you need to CLICK ON THE LOCK and UNLOCK it. You'll need the administrator password to do this. Once the lock is unlocked, click on each printer listed there and then click the minus button. Repeat the process until all printers in the print & fax dialog are deleted.
    2. Download two programs from the net. (REMEMBER where you download these files on your computer.)
    A. Download a program called CUPS from this site. http://www.cups.org/software.php?VERSION=1.3svn-r6326&FILE=cups/1.2.8/cups-1.2.8 .dmg
    CUPS is a unix program that Apple uses within Mac OSX to print. Download version 1.2.8 only. When you get to the site, you will have FTP and HTTP buttons to select where to download from. If you're already in a browser, click on one of the HTTP sites. That way you don't have to open an ftp program.
    B. Download and install a program called PRINTER SETUP REPAIR (VERSION 5.0.5) from this site. http://www.fixamacsoftware.com/software/index.html
    PRINTER SETUP REPAIR is a shareware program we'll use to fix some issues... if this works I suggest you go back to this site and be a good net citizen and purchase the software. If it doesn't then don't buy it.
    3. Install CUPS by clicking on the CUPS.DMG file twice. This will open the DMG file on the desktop as a hard disk image. Open the CUPS HD image and click on the CUPS.pkg twice to install the program. Follow the instructions to the end. After installation click close button.
    4. Open psr505te.dmg by clicking on it twice. (it might be called psr505TE.dmg.zip. if it is, click on the psr505TE.dmg.zip file twice to open it, then click on the psr505TE.dmg file twice to open it.) Once the psr505TE.dmg is open, open the PRINTER SETUP REPAIR HD on your desktop. Inside is a program by the same name. Open it by clicking on it twice.
    5. Click the "TRY IT" button, type in your admin password, and click the CONTINUE button
    6. On the left side of the Printer Setup Repair dialogue window, click CUPS TOOLS icon. in the middle of the dialogue box, if the screen reads " cupsd is running" click the STOP button located just to the left.
    7. On the lower right hand side of the Printer Setup Repair dialogue window, under the words "replace current cupsd.conf file with", SELECT "new cupsd.conf file". Then click GO. Then click CONTINUE in the next dialog box that appears.
    8. On the left side of the Printer Setup Repair dialogue window, click on the FILE PERMISSIONS ICON. Make sure that all of the boxes in the middle of the Printer Setup Repair dialogue window are checked except for OMIT LOCALIZED FILES and both of the FOR ALL USERS boxes. At the top of the screen in the middle click on the PRINTER ICON THAT HAS A QUESTION MARK on it. In the window that pops up click CONTINUE. This will run VERIFY AND REPAIR PERMISSIONS from inside the Printer's Setup Repair Program. (I know, there is a repair permissions in the Disk Utility Program already on the mac, it doesn't do something that this program does. I don't know what it does, but this works and Disk Utility doesn't.)
    9. Run it AGAIN! (the second time does the trick for some reason. just once didn't do it on three out of 5 macs that I used this work around on). This should allow you to print in TEXT EDIT.
    10. If you are using Microsoft Word and you want to print something, you need to SAVE AS a text only file (File menu / Save As / Format - Text Only) and print by opening the document in TEXT EDIT and printing from that application. So far this fix has worked on 1 intel iMac, 1 lamp stand iMac, an eMac, a Macbook and an iBook. (Funny enough, my G4 sawtooth Mac running 10.4.9 works fine and prints from MS word without a hitch.)
    If this fix works for you, i encourage you to go back to printer's setup repair's website (http://www.fixamacsoftware.com/software/index.html) and purchase their software.

    Use the install disk that shipped with your Mac to "Repair Disk"
    Steps for using Disk Utility
    1. Insert the Mac OS X Install disc that came with your computer, then restart the computer while holding the C key.
    2. When your computer finishes starting up from the disc, choose Disk Utility from the Installer menu. (In Mac OS X 10.4 or later, you must select your language first.)
Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from the disc again to access Disk Utility.
    3. Click the First Aid tab.
    4. Click the disclosure triangle to the left of the hard drive icon to display the names of your hard disk volumes and partitions.
    5. Select your Mac OS X volume.
    6. Click Repair.
    If you repair errors run it until no errors found.
    Let us know.
    -mj
    [email protected]

  • BO 4.1 SP3 WebI section space Issue - Work around

    System:
    SAP BO 4.1 SP3 Update
    Windows 2008 R2 Std x64 Edition SP1
    Universe - Single Source UNX
    We upgraded from SP2 to SP3 recently and while working on the WebI report, I noticed that WebI reports with Section creates big spaces between sections and the table block. There is a setting to adjust the Top header vs actual section header space using Format Section. But in the View Mode, there will be lot of space between table blocks due to the Section boundary.
    So, I read web articles and tried couple of options but in vain. But the following work around helped me to overcome this issue !!
    I tried to create it from a new 'Add report' in the same WebI report, so that I can reuse my earlier tables/cross tabs etc.
    1. At the bottom of the WebI report Right click the tab -> Add report -> In the new sheet go to Report Elements -> Section -> Insert Section and select the object from the UNX.
    2. A new section is created.
    3. Now check whether you can adjust the section size manually. If yes, then copy the Header content / table blocks from the problematic tab to this new tab;
    4. You can use the newly created section report for other problematic report tabs.
    The above steps are work around ONLY.
    For me it looks like a SAP Product bug. If anyone else had similar issue please post your comments !!
    Thanks,
    Chithresh

    Are you also having issues with merged dimensions that are used on the sections?
    I've had to unmerge, merge, and create the section again. It throws an error if I don't do that.

Maybe you are looking for

  • Very Slow Broadband - Moderator Help Please

    In the past (Mid 2010) I was getting over 1Mbps speed. BT line checker tells me I should be able to get 1-3Mbps. Most recent BT speed check on the line shows: Download 239Kbps Acceptable speed range 50-500Kbps Profile 350Kbps DSL download 544Kbps Upl

  • NO Graphics Card? ***?

    I just bought the new Mac Book Pro 17" When I goto Apple > About this Mac, it says: Graphics  Intel HD Graphics 3000 512 MB But when I click more info > Graphics, I see AMD Radeon HD 6770M (PCIe) and Intel HD Graphics 3000 (Built-in). What's the deal

  • MODIFYING WEB SITES TAB BUG - Anyone else?

    This isn't a how-to thread as such, but I'm using Mac OS X Server 10.4.11 and I have many websites that I'm hosting (27 at the moment, mainly subdomains). The nature of my business is that I need to keep adding subdomains the more users I get, and th

  • Error message when connecting device to itunes

    HELP ME get my ipad on PLEASE!!

  • How to know my sap 4.7 release version.

    hi, i have sap 4.7 on oracle 9.2 -hp-ux. i want to know how check my sap version release either SAP R/3 ENTERPRISE 47X110    or   SAP R/3 ENTERPRISE 47X200. Regards, sk