Data backup when running 2 iPhone's on 1 account?

I have 2 iPhones (I bought the original iPhone on the 1st day it came out, then bought the 3G when that came out).
I use one to run my home (Wi-Fi / internet / remote control of iTunes etc), and one as my phone - (ie has the sim card)
Whilst this is working fine, I have a question:
- When iTunes backs up my iPhones, does it recognise that they are 2 different devices and therefor keep seperate backups? Ie. If I have data within an App on one particular phone will that we kept such that I can recover with a backup?
- Could I restore the 3G phone from the backup of the original device? (including operating system)?
I have both running off the same iTunes account in terms of buying App store / music store.
Many thanks for any tips,
Dan.

The backup for each iPhone should be different, but having a different name for each iPhone ensures this. Go to iTunes > Preferences. Under the Devices tab you can view the backup for each device. You can delete the backup for each device from there also.
The backup for an iPhone stores data such as most iPhone settings, email account settings, contact info, SMS messages, notes, recent calls, call favorites, photos in the camera roll, and 3rd party app settings and data created and stored by a 3rd party app.
The operating system is included with the firmware update that is downloaded when you choose to download a firmware update when notified a firmware update is available for your iPhone. When restoring an iPhone with iTunes, the iPhone is completely erased followed by re-installing the current firmware version from the firmware download that remains on your computer.

Similar Messages

  • Calculated members in Data Manager when run package

    Hi All
    Do you know why calculated members in C_ACCT dim (which has child and are calculated by hierarchy) are not available in data manager when I want to run package. I want copy this calculated members to another account by using script logic and run it by data manager.
    Below is my script
    *XDIM_MEMBERSET C_ACCT = IC_BSAS05
    *WHEN ENTITY
    *IS 1013
    *REC(FACTOR=2,C_ACCT="ICX_BSCS02")
    *ENDWHEN
    *COMMIT
    IC_BSAS05 is caclulated by hierarchy.
    It works for non-calculated, please tell me if it is possible to run script also for calculated members.
    Regards!

    Hi Justyna,
    When you say that IC_BSAS05 is "calculated by hierarchy" do you mean that IC_BSAS05 is hierarchy node?
    If this is true then try replacing the first line of your script with
    *XDIM_MEMBERSET C_ACCT = BAS(IC_BSAS05)
    Regards,
    Gersh

  • How to keep the Unlimited verizon data plan when upgrading to iphone 4s?

    How can I keep my unlimited data plan when upgrading to a IPHONE 4s???
    I tried everything!!! I have an apple giftcard so I want to use it through apple.com but It wont let me keep my unlimited data plan

    The terms of your data/phone plan are solely determined by your carrier, in this case Verizon.  It is up to them if they wish to allow consumers to carry over the existing terms of their plan.  Hence, the thing you need to do is contact Verizon customer service and ask them to carry your terms over with your upgrade.  I'm hoping if you ask nicely they may do it.
    Hope this helps

  • If i downgrade my itunes can i save data lost when updating to iphone OS 4?

    Hi i was one of the masses who lost their data updating from 313 to OS 4 during june 2010. I had itunes version 9.1 where my content was backed up perfectly on that and i had to update it to 9.2 to upgrade my phone to OS 4.
    I got a message saying I have to update to the latest version of itunes to support the latest iphone software for my phone. when I did that and updated, I got the infamous error code my phone crashed everything was erased, when I came to restore from my backup file which is still dated to june 20th 2010, the data was blank.
    so if i downgrade my itunes to 9.1 and my iphone back to OS 3.1.3 would I be able to recover my content?

    That won't work... reason being is you need the following requirements for the iPhone 4.
    Mac system requirements
    Mac computer with USB 2.0 port
    Mac OS X v10.5.8 or later
    iTunes 10.1 or later (free download from www.itunes.com/download)
    iTunes Store account
    Internet access
    Windows system requirements
    PC with USB 2.0 port
    Windows 7; Windows Vista; or Windows XP Home or Professional with Service Pack 3 or later
    iTunes 10.1 or later (free download from www.itunes.com/download)
    iTunes Store account
    Internet access

  • Issue with date formula when running a report on the 1st day of the month

    We have a formula that compares last month data against last year last month, the report runs on the 1st of every month although the report errors when it tries to run in January being the first month of the new year it tries to look for a month begining with Zero instead of looking back at decemeber which would be 12.
    Does anyone any solutions for this issue?
    Thanks,
    Chris
    Example of some formula's we have tried but none seem to work.
    if {@MonthName} = "December" then year({CDCCHD.CDOPDT}) in year(currentdate)-1 to year(currentdate)-2 else year({CDCCHD.CDOPDT}) in year(currentdate)
    OR
    (if {@Last Full Month Name}= "December" then year({CDCCHD.CDOPDT})= year(currentdate)-2 or
    {CDCCHD.CDOPDT} in lastyearytd else {CDCCHD.CDOPDT} in lastyearytd or
    {CDCCHD.CDOPDT} in yeartodate)
    OR
    ({CDCCHD.CDOPDT} in dateserial(year(currentdate)-1,month(currentdate),01)-1 to dateserial(year(currentdate)-1,month(currentdate)-1,01) or
    {CDCCHD.CDOPDT} in lastfullmonth)
    OR
    if {@monthname} = "December" then {CDCCHD.CDOPDT} in dateadd("m", -28, (currentdate)) to (currentdate)-14 else {CDCCHD.CDOPDT} in dateadd("m", -14, (currentdate)) to (currentdate)

    Chris,
    Give these formulas a try...
    Beg of Last Month
    DateAdd("m", DateDiff("m",#1/1/1900#, CurrentDate) - 1, #1/1/1900#)
    End of Last Month
    DateAdd("m", DateDiff("m",#1/1/1900#, CurrentDate), #1/1/1900#)
    Beg December of Last Year
    IF DatePart("m",CurrentDate) = 1
    THEN DateSerial(DatePart("yyyy",CurrentDate) -2, 12,1)
    ELSE DateSerial(DatePart("yyyy",CurrentDate) -1, 12,1)
    End December of Last Year
    IF DatePart("m",CurrentDate) = 1
    THEN DateSerial(DatePart("yyyy",CurrentDate) -1, 1,1)
    ELSE DateSerial(DatePart("yyyy",CurrentDate), 1,1)
    Note that the "End" formulas produce a value that shows midnight of the following day that you would normally expect to see... For example, if you are expecting to see 12/31/2009, it will show 1-1-2010.
    The reason is that the formulas come out to be midnight of the day shown... So a range of 12/1/2009 - 1/1/2010 will include 12/31/2009's data but none of 1/1/2010... (12/1/2009 - 12/31/2009 would actually cut off 12/31/2009).
    If for some reason your data is stored w/o time values then an adjustment would need to be mande.
    HTH,
    Jason

  • No data loaded when running publish/subscribe sample on Tomcat

    I have Tomcat 6.0 running as a .jsp handler with Apache 2.2 using the mod_jk connector. I've configured the samples/ context to be handled via Tomcat. Everything seems to be working fine -- I can access the files and launch .jsp files via my web browser.
    But when I try to fire up the DataPush example, I get no results from BlazeDS. Here's the procedure I am using:
    1. Start the feed by running http://localhost:8080/samples/testdrive-datapush/startfeed.jsp
    2. Run the Flex side: http://localhost:8080/samples/testdrive-datapush/index.html.
    3. Press the "Subscribe to 'feed' destination."
    Using Firebug within Firefox, I can tell that it's attempting to access a streaming channel. There are two requests:
    1) http://localhost:8080/samples/messagebroker/streamingamf
    2) http://localhost:8080/samples/messagebroker/streamingamf?command=open&version=1
    Request #1 comes back with a plain-text "Loading..." response.
    Request #2 returns an error message: The request sent by the client was syntactically incorrect ().
    Incase it matters, I have been playing around with the config files in previous tests. For this test, I deleted the samples.war, and samples/ directory from Tomcat. Then I copied the original samples.war back in and restarted Tomcat to redeploy. I would think that this erases all of my configuration settings -- but it does not seem to be doing that (The Data Push/Pull does NOT default to streaming from the Turnkey package, yet when I hit the service again, it always tries to perform streaming first -- as I had told it to do in a previous configuration).
    So I have two questions:
    1. Why doesn't the example work using streaming?
    2. Why aren't my configuration files being reloaded when I restart Tomcat?
    TIA
    Jonathon

    Hi,Alex
    Thanks for your advies, But it do not works.
    with a Apache Fronting Tomcat, the following config is work:
    channel 1 : Hi. Here are answers to your questions.
    >
    >>>1. Why doesn't the example work using streaming?
    >Some proxies buffer the response that is sent back to the client. This causes streaming connections to not work. This is a known issue with the mod_jk connector. Take a look at the  following bug for more info.
    >http://bugs.adobe.com/jira/browse/BLZ-84
    >
    >>>2. Why aren't my configuration files being reloaded when I restart Tomcat?
    >Did you recompile the sample application after changing the configuration? The configuration information is used by both the server and the client and is compiled into the client. You will need to recompile the client application using the new configuration files if you want your changes to be picked up. Note that is is possible to load the configuration information into the client application at runtime but that's not how the sample applications were built. If you are interested in loading the configuration information at runtime here is a blog posting that gives an example.
    >http://coenraets.org/blog/2009/03/externalizing-service-configuration-using-blazeds-and-lc ds/
    >Hope that helps.
    >-Alex
    >

  • Date format when running in Mexico vs US

    When using RS 2005.   I have a report that I developed in the US and runs on a server in the US.   I can create a subscription with no problems.
    When our region in Mexico trys to create a subscription it gives an error on the date selections  because it want to do dd/mm/yyyy instead of mm/dd/yyyy.
    Is there a way around this problem. 

    The solution will require custom code since SSRS does not support localization. CodeProject has a couple of solutions:
    http://www.codeproject.com/Articles/294636/Localizing-SQL-Server-Reporting-Services-Reports
    http://www.codeproject.com/Articles/33355/Localization-of-SSRS-Reports
    "You will find a fortune, though it will not be the one you seek." -
    Blind Seer, O Brother Where Art Thou
    Please Mark posts as answers or helpful so that others may find the fortune they seek.

  • How can I get size of fetched data size when run a SQL ?

    Hi,
    When I run a SQL how can I get fetched data size?
    regards,

    We can get it using some calculations:
    1. SQL%ROWCOUNT attribute will fetch you number of rows returned in a SQL statement.
    Problem-->Now you need to get the size of 1 row.
    Solution-->
    Step 1.We can get size of table from dba_segment data dictionary.
    Select block_size from dba_segemnts where segment name like '%YOURTABLE%';
    Step2 . Get count of rows in your table
    Select count(*) from YOUR_TABLE
    Step 3.
    Get size of 1 row--> Divide result in Step1 by result in Step 2.
    Required result--> multiple result in step3 with SQL%ROWCOUNT..
    I hope this is what u want.

  • Weird data obtained when running Task: AD Group Lookup Recon

    Hi,
    Im running the scheduled task named: AD Group Lookup Recon
    It works. and populates the lookup named Lookup.ADReconciliation.GroupLookup
    but when lookin in the design console, the Code Key and the Decode values have weird data ie:
    code key: 2~CN=TelnetClients,CN=Users,DC=adtest,DC=com     
    Decode: ADITResource~CN=TelnetClients,CN=Users,DC=adtest,DC=com
    in the code key there is an extra *2~*
    in the Decode is an extra ADITResource~
    I may think that it is some kind of coding for connector commands used in provision tasks, when I'm trying to provision an OIM user to Active Directory (in the Organization Lookup field) i get this data
    this is just one line:
    Value: 2~CN={6AC1786C-016F-11D2-945F-00C04fB984F9},CN=Policies,CN=System,DC=adtest,DC=com      
    Description: ADITResource~CN={6AC1786C-016F-11D2-945F-00C04fB984F9},CN=Policies,CN=System,DC=adtest,DC=com
    Any Ideas?
    Thank You.

    yes you are right, code key and decode key is because of the coding in the connector to distinguish lookup values coming from multiple IT resources.
    If you want to get rid of this [IT Resource~] you will have to modify the connector.
    One more thing looks like the base dn you have specified for lookup reconciliation is DC=adtest,DC=com with generic filter thats why you are getting entries like 2~CN={6AC1786C-016F-11D2-945F-00C04fB984F9},CN=Policies,CN=System,DC=adtest,DC=com which may not be a group you want
    Hope this helps,
    Sagar

  • NO DATA error when running init load with 2LIS_11_VAHDR

    hi experts,
    I try to load initial data with 2LIS_11_VAHDR
    the steps I did:
    1. 2LIS_11_VAHDR is activated in R/3 Log.Cockpit LBWE
    2. 2LIS_11_VAHDR is replacated in BW
    3. Setup tables are filled for SD Sales Orders in R/3
    4. testing 2LIS_11_VAHDR with RSA7 in R/3 delivers 981 records
    when I start the info package with "Initialize delta process with Data Transfer" the error occurs "0 Records - NO DATA"
    Any Idea what I'm doing wrong?
    Best Regards
    neven

    Hi,
    Go to bd87 transaction and see any yellow requests..If so select it and process manually.
    or
    In the monitor  Environment->Transactional RFC -> in the source system.
    Then give user id and pwd for source system and try to execute...see if any LUWs are pending and process them.

  • HT4859 Why would I rather use I cloud backup when transferring from iPhone 4 to iPhone 5

    Which is better to use to back up my iPhone 4 then transfer to iPhone 5. iTunes or iCloud.

    Faster and I believe more reliable.  However, be sure to sync photos to a computer before doing the switch. THAT is the safe way to transfer photos - too many users have gotten burned relying on getting back photos from an icloud backup.

  • Why I get "Error in getting session data" error when running report?

    Hello,
    I have reporting services on one server, and SharePoint 2010 on other server. When I view report from browser, I got blank page. From Report Server Log file, I got below error:
    v VERBOSE: writting session cookie: ekkrjbubp00t5wzc3rzspvzb
    v VERBOSE: Saved report snapshot to session in a background thread <for same session id>
    e ERROR: Throwing Microsoft.ReportingServices.Diagnostics.Utilities.ReportServerStorageException: , An error occurred within the report server database.  This may be due to a connection failure, timeout or low disk condition within the database.;
    e ERROR: Error in getting session data: Expired Session: ekkrjbubp00t5wzc3rzspvzb
    e ERROR: Throwing Microsoft.ReportingServices.Diagnostics.Utilities.ExecutionNotFoundException: , Microsoft.ReportingServices.Diagnostics.Utilities.ExecutionNotFoundException: The report execution ekkrjbubp00t5wzc3rzspvzb has expired or cannot be found
    Are there anyone getting the same issue as mine? I did not see any solutions for this issue when I searched.
    Thanks,
    Megan

    There are a number of timeouts in SSRS; session timeout, report execution timeouts, http request timeouts.  A session timeout in SSRS is not the same as a session timeout in ASP.NET.  Below are some articles that can help you understand the timeouts
    and hopefully lead you down the path of discovery.
    This articles is a good article as it discusses the session timeout and the keep alive that is sent from the report viewer.
    http://blogs.msdn.com/b/jgalla/archive/2006/10/11/session-timeout-during-execution.aspx
    This article is good as well in describing some of the timeouts.
    http://blogs.msdn.com/b/dynamicsaxbi/archive/2013/02/14/how-to-addressing-ssrs-session-timeouts.aspx

  • Different data returned when running report

    I have a report showing the diagnostic codes of all our patients.  Missing some codes in the report that are stored in the database.  Update one patient and get that record to show up, 2-3 other codes for other patients go missing.  Very weird.

    Please re-post if this is still an issue or purchase a case and have a dedicated support engineer work with you directly

  • Error when running BDLS

    Dear expert,
    BDLS as the final steps of system refresh (ECC), i failed with error
    i scheduled it as the background job
    error: "Data inconsistency when running program RBDLSMAP, form routine PROCESS_SPECIAL_OBJECTS"
    And also i can't not run the BDLS again , by error "new logical already assigned" and I failed to delete the entry in BD54
    Anyone have idea?
    And i would also like to know the risk if we skip the BDLS running after refresh
    Best regards,
    kate

    Hi Kate
    1. Have you completed the post refresh tasks?
    2. Could you check this SAP Notes
    1293891 - Problems in transaction BDLS
    1250197 - BDLS: Termination with message "Data inconsistency"
    Regards

  • IOS 7 Only Allows Find My iPhone with Primary iCloud Account

    While iOS7 may be a big leap forwards in most respects, the "Find my iPhone" feature has taken a big step in reverse. This useful feature is NO LONGER AVAILABLE for use with secondary iCloud accounts, ONLY your PRIMARY account.
    This may not be a huge concern for most users, because many (including most first-tier tech reps at Apple I've spoken to) seem to believe that you can only have one iCloud account on a device. NOT TRUE. While you can only have one PRIMARY account, you can add multiple additional iCloud EMAIL accounts (go to Settings/Mail, Contacts & Calendars/Add Account/iCloud). In the last iOS, once you created a new, secondary iCloud email address, you could activate many iCloud features for use with the new account, including Mail, Calendar, Contacts, Reminders, Notes, Safari Data (which never actually worked), and Find My iPhone. Under iOS7, however, Find My iPhone is no longer available. Instead, a small paragraph below the new iCloud email account setup screen says "Only your main account can use Bookmarks, Photo Stream, Documents & Data, Backup, and Find My iPhone."
    Consider two cases where this is a huge problem.
    1) We have a large number of company iOS devices that we need to keep track of.
    2) Personally, I have an iPhone and iPad, and so does my wife. So do our kids!
    In both the above cases, we created a secondary iCloud account, we'll call it "[email protected]", and added it as a secondary iCloud email address on ALL our iOS devices. In the setup screen we disabled everything EXCEPT "Find My iPhone". This account has a unique password, making it possible to see the location of ANY OR ALL the devices using the Find My iPhone App, WITHOUT having to share email, contacts, calendars, etc. among all these devices.
    In our company, I can tract the location of any iOS device I gave to an employee, but his personal PRIMARY iCloud account is used to keep his mail, contacts, calendars, etc. secure. He shares this data between his iPhone and iPad, but NOT with everyone else. In my family, we all have our own primary iCloud accounts. I share mine between my iPhone and iPad; my wife and kids do the same. This allows us to keep our calendars, contacts, emails, etc. separated. But we all used the secondary iCloud email account ONLY with Find My iPhone. This allowed everyone in the family to see the location of everyone else, very nice in an emergency. Unlike the Find My Friends app, the device being located doesn't have to respond to a request to be found (very important when finding a lost or stolen device).
    In both the above cases, we just log into the Find My iPhone APP on ANY iOS device, using the secondary iCloud account's email address and password (the email address is actually saved in the app, so you really only need to enter the password after the initial login). Viola! You can now see the location of any device that has that secondary iCloud account installed. And a person can still be untrackable if they wish, simply by turning off the Find My iPhone feature under the shared account's iCloud account settings on their device.
    Alas, with iOS7 this is no longer possible. With the Find My iPhone feature only available for use with the device's PRIMARY iCloud account, there are only two ways to track another device:
    1) Use the same primary iCloud account (which forces you to share other data and features you may not want to);
    2) Log into the Find My iPhone APP with the PRIMARY iCloud email address and password of the person you want to track.
    Either way, the person doing the tracking MUST have access to the PRIMARY iCloud credentials of the device they are tracking. This is a large security hole! Ask yourself: if you are a parent, do you really want your kids to have access to your primary iCloud account, including your mail, contacts, calendars, etc? Some people may not want their spouse to access that. In a company setting, do you want all your employees to be FORCED to share Documents & Data, Backup and Bookmarks, just to use the Find My iPhone feature? If they want to keep their mail, contacts, calendars, etc. separated from other employees, they will be forced to move these to a secondary iCloud account, which will no longer allow them to share Bookmarks, Photo Stream, Documents & Data or Backup. Why this ridiculous limitation?
    The bottom line:Find My iPhone is now only useful for the primary iCloud account holder, and can no longer be used effectively between larger numbers of iOS devices, such as families or corporate institutions. This should be addressed in the next update to the iOS.

    Brad, and everyone else, just to clarify my original post that started this thread, and offer a workaround or two: you CAN  still locate, erase etc. any iOS device using Find My iPhone in iOS7,  but the device you want to track or erase must EITHER use the same PRIMARY iCloud account as you do, OR you must log into the Find My iPhone app on your phone using THEIR primary iCloud account's username and password.
    For parents, that's not a big deal, maybe just an annoyance: give your kids their own individual primary iCloud accounts, but you jot down their username and password in their contact info on your phone. Log Into FMI with that and track them.
    The real pain is if you as an adult want others to be able to see where you are, WITHOUT also giving them access to your other iCloud info. For then to see you, THEY must either use the same PRIMARY iCloud account as you do, or they must have your username and password to log into the FMI app...which means they cal also see all your other stuff, even if you turn off the FMI feature on your phone. Anything you share with iCloud will be visible to anyone with access to your iCloud account.
    For corporate users who want to track and manage company-owned iOS devices without having all of them use the same primary iCould account, this is a big pain. For families, imagine being on a vacation, or experiencing a disaster, accident, etc, where you'd really want everyone to be able to locate each other, even if they are unable to answer their phone or otherwise respond...a very real possibility in today's world. Now not so easy without compromising privacy and security.
    I have three workarounds. The first two use Find My iPhone and so require everyone to use the same PRIMARY iCloud account.
    1) the simplest thing is to go to your device under Settings/iCloud and toggle off anything you don't want others to see...but if you have multiple devices of your own (say an iphone and an iPad), this prevents you from sharing with yourself. Bummer.
    2) It occurred to me today that with iOS6 there was a way to lock out changes to features in Settings. Sure enough, it still works with iOS7. Enabling this feature allow everyone to share the same PRIMARY iCloud account WITHOUT sharing other things you'd like to keep private. Enabling this feature will prevent the person with the device from making any changes to the Accounts on their device (Mail, Contacts, Calendars), so you'll need to think about what features of these accounts you WANT to allow before following the steps below. ALL THE FOLLOWING STEPS ARE PERFORMED ON THE OTHER DEVICES IN YOUR FAMILY/COMPANY, not your own.
    A) I suggest entering airplane mode in Settings to prevent the device you are working on from downloading any of your iCloud info during this process.
    B) Next, be sure YOUR PRIMARY iCloud account is listed on the person's device that you wish to track (kid's employee, etc). Go to Settings/iCloud to check this, and if necessary sign out of their iCloud account here and sign in with your primary iCloud account.
    C) Add a second iCloud account using their personal iCloud email address (the one you just deleted as the primary). Set this one to share whatever they need to (their own Mail, contacts, calendars, etc). If they weren't previously using iCloud for anything but tracking and already had their own email account set up, you can omit this step.
    D) Now, decide what features of your Primary iCloud account you do NOT want this person to be able to see or use  (mail, contacts, calendars, etc). On THEIR DEVICE go to Settings/iCloud, and toggle OFF any of these things, but be sure to leave anything they need to share. A common issue here will be Photos. Since Photo sharing is now ONLY supported with the primary account, I suggest leaving this on, but you can still prevent them from seeing your new photos if needed. Tap the arrow to the right of Photos, and on the next screen toggle off "My Photo Stream", but leave on "Photo Sharing" which allows them to see, create and subscribe to other shared steams, just not your primary photostream. You can instead make this same Photo setting on your device, which has the same result. Or just disable Photos altogether. Whatever setting suits you the best.
    Once you have decided which features of your primary iCloud account you'll allow this person to see, BE SURE YOU HAVE ALSO TURNED ON "Find My iPhone" here.
    E) Lastly, go to Settings/General/Restrictions. Tap "Enable Restrictions". Enter a new password (twice- this is NOT the same password for the device, but only for locking and unlocking restrictions, so use a new one only you will know). Scroll down to the "Allow Changes" section and tap "Accounts." Tap to place a check next to "Don't Allow Changes". Exit from Settings.
    You're done! Repeat the above steps on every device in your family or company you want to track. You will now be able to track all of them at one time using Find My iPhone on your device, from your primary iCloud account, and they will also be able to see your device location, but they will not be able to see any of your information as long as you toggled it off and then locked out account changes under restrictions. Be aware that they will not be able to add, delete or change any Mail accounts unless you unlock the restrictions. But you will likely have their own separate email account on this device (step C above).
    3) if this is too much for you to handle, and tracking is your primary concern,  in the App Store there is a free app called "Find my Kids - Footprints" . They just released a new iOS7 version which is unrated, but the previous version was reasonable well rated. After a trial it requires an annual subscription (which removes the ads, and it is VERY cheap), but it irks me to pay for a service that I used to get for free.  I haven't tried it yet, but it seems to do a bit more that the Find my iPhone app as far as tracking...but it can't lock or erase your device. You'd still need to use their primary iCloud account for that. I'm sure we'll be seeing more apps like this in the near future.
    Hope this helps.

Maybe you are looking for

  • Mini CD's Problem ??

    Good Afternoon all A colleague from work has purchased a Intel Core Duo 17" iMac for his daughter, now she was installing music on it and has put in a small CD (roughly half the normal size). Is there any way to get this out without having to take it

  • French accents on QWERTY keyboards

    Short of changing my keyboard or adopting the time-consuming methods for inserting French accents when using a QWERTY keyboard (I use them now and they slow me down enormously), is there a way to reprogram[?] some keys on my MacBook Pro so they input

  • When copying a state, symbols get lost (latest CS6 Update)

    This is driving me absolutely NUTS. I'm working in Fireworks on a daily basis and I use symbols a lot. But ever since the last update for Fireworks CS6, every time I copy a state, it doesn't copy the symbols as well. If the symbol is grouped (whether

  • First page loaded

    This may be a stupid question but here goes. We have several JSP apps where the first page loaded is other than main.html. We have tried changing the default run target to another file but it still tries to load main.html. We have worked around this

  • About changes in existing Times slots.

    I see that the standard behavior in ISH is to allow changes in time slots despite having existing appointments for care units. Is there a customizing point I am missing? Thanks. Daniel;