Is there a way to set an auto sync feature to icloud and windows contacts without using outlook or Windows live messenger just straight to windows contacts?

Need to sync icloud contacts to windows contacts without using outlook or windows live messenger on my pc, i have itunes and icloud fully set up on my pc and i have an ipad2. itunes setting for syncing to windows contacts is not working, nor will it sync to my gmail. I tried to get icloud to sync to my gmail, and thought that i could then sync my gmail to windows contacts, but icloud isn't syncing to gmail either. I configured it correctly, (or at least tried). I was able to copy the csv and all that, and do it manualy, but would like it to sync automatically. Please help.
using itunes new version (9/30/2012), on my windows 7 pc. My ipad2 is running ios 6.

No, you need Outlook.

Similar Messages

  • Is there any way to set up my iPhone as an iCloud backup after I've already set it up as a new iPhone?

    Is there any way to set up my iPhone as an iCloud backup after I've already set it up as a new iPhone?

    If you mean you want to restore from an iCloud backup, go to Settings>General>Reset>Erase All Content and Settings, then go through the setup assistant again and when given the option choose to Restore from iCloud Backup (see http://support.apple.com/kb/HT1766).

  • I have a first generation iPad and got my husband the iPad 2 for xmas.  is there a way to transfer his tiny tower game from my iPad to his without using the same iTunes account?

    I have a first generation iPad and got my husband the iPad 2 for xmas.  is there a way to transfer his tiny tower game from my iPad to his without using the same iTunes account?

    Apps are only tied to one account... You can set up two iTunes accounts on your computer, however, and let his iPad sync to his account. If he has never backed up his apps to a computer, however, he will have to redownload all the apps. Afterwards, he can backup to iCloud instead of your computer.
    http://support.apple.com/kb/ht1495

  • Is there any way to set up auto-correct on Safari?

    i have a habit of not holding down the shift key long enough and typing i instead of I all the time in message boards, chatrooms and the like.  Is there any way to force safari to auto-correct a single lower-case i?
    i am getting really peeved with having to go back through every post to correct all of the first person pronouns - like i didn't bother doing in this post!

    Sorry, but I don't think that is possible.

  • Is there a way to set the ID of a collection item and not worry about fxx?

    Hi Everyone, I am not certain if I am phrasing this properly, so bear with me.
    I have a tabular form based on a collection.   There are a variety of items, textareas, select lovs, and radio groups in this tabular form.  Some of the items have a set id which correspond to the collection field...so for example,
    c010 has id='f10'+seq
    c012 has id='f12'+seq
    when any field is changed, a dynamic action is executed.
    dynamic action:  COLUMN CHANGE
    event: CHANGE
    selection type: JQUERY SELECTOR
    jquery selector: input[name='f10'],input[name='f11'],input[name='f12'],.shark_info, .hms_info
    true action1: set value, javascript expression, set P110_ID = this.triggeringElement.id AFFECTED ITEM P110_VALUE
    true action2: execute pl/sql code
    begin 
    null; 
    end;
    page items to submit: P110_ID
    true action3: set value, javascript expression, set P110_VALUE = this.triggeringElement.value AFFECTED ITEM P110_VALUE
    true action4: set value: PL/SQL expression, set P110_SEQ = rtrim(substr(:P110_ID,5,4),'0')    AFFECTED ITEM: P110_SEQ
    true action5: execute pl/sql code
    declare 
      v_attr number; 
    begin  
      v_attr := TO_NUMBER (SUBSTR (:P110_id, 2, 2)); 
      apex_collection.update_member_attribute 
                       (p_collection_name      => 'SPECIES_COLLECTION', 
                        p_seq                  => :P110_SEQ, 
                        p_attr_number          => v_attr, 
                        p_attr_value           => :P110_VALUE); 
    end; 
    page items to submit: P110_ID, P110_VALUE, P110_SEQ
    true action6:  refresh region
    The value of v_attr is set to a substr of P110_ID....and p110_id is based on the ID of the item. 
    I have one item, a radio group called c024.   It is not called as an apex_item because the radio group (for whatever reason) would not work.  Therefore, in order for c024 to correspond to attribute 24, I must make certain that there are 23 editable items appearing before it...or at least that is the only way to get it to work.
    I am wondering if there is a way to assign the ID='f24'+seq manually in much the same way that I assigned the CSS class=.SHARK_INFO to this item.
    any clues appreciated.
    thanks,
    Karen
    ps.  the query for the tabular form is:  (and really, anything without an alias could be removed, but is there to ensure that c024 = f24.  ugh.  Is there a better way?
    SELECT
    apex_item.text(1,seq_id,'','','id="f01_'||seq_id,'','') "DeleteRow",
    seq_id,
    seq_id display_seq_id,
    c003,
    c004,
    c005,
    c006,
    apex_item.text_from_LOV(c004,'SPECIES')||'-'||apex_item.text_from_LOV(c005,'GRADE')||'-'||apex_item.text_from_LOV(c006,'MARKETCODE')||'-'||apex_item.text_from_LOV_query(c007,'select unit_of_measure d, unit_of_measure r from species_qc') unit,
    apex_item.select_list_from_LOV(8,c008,'DISPOSITIONS','onchange="getAllDisposition('||seq_id||')"','YES','0','  -- Select Favorite --  ','f08_'||seq_id,'') Disposition,
    apex_item.select_list_from_LOV(9,c009,'GEARS','style="background-color:#FBEC5D; "onFocus="checkGearPreviousFocus('||seq_id||');"onchange="getAllGears('||seq_id||')"','YES','3333','-- Select Favorite --','f09_'||seq_id,'') Gear,
    apex_item.text(10,TO_NUMBER(c010),5,null, 'onchange="setTotal('||seq_id||')"','f10_'||seq_id,'') Quantity,
    apex_item.text(11,TO_NUMBER(c011),5,null,'onchange="getPriceBoundaries('||seq_id||')"','f11_'||seq_id,'') Price,
    apex_item.text(12, TO_NUMBER(c012),5,null, 'onchange="changePrice
    ('||seq_id||')" onKeyDown="selectDollarsFocus('||seq_id||',event);"','f12_'||seq_id,'') Dollars,
    decode(c013,'Y',apex_item.text(14, c014,30,null,'style="background-color:#FBEC5D;" onClick="onFocusAreaFished('||seq_id||');"','f14_'||seq_id,''),'N','N/A') Area_Fished,
    c014,
    c015,
    c016,
    c017 additional_measure_flag,
    decode(c017,'Y',apex_item.text(18, c018,4,null,'style="background-color:#FBEC5D; "onBlur="setUnitQuantity('||seq_id||')"','f18_'||seq_id,''),'N','N/A') UNIT_QUANTITY,
    decode(c017,'Y',apex_item.text(19,'CN',3,null,'readOnly=readOnly;','f19_'||seq_id,''),'N','N/A') UNIT_COUNT,
    c024 fins_attached,
    apex_item.textarea(28,c028,3,null,'class="hms_info"','f28_'||seq_id,'') Explanation,
    decode(c024,'N',apex_item.select_list_from_LOV(29,c029,'HMSNATURE','class="hms_info"''onchange="saveNature('||seq_id||')"','YES','A','-- Select Nature of Sale --','f29_'||seq_id,''),'U',apex_item.select_list_from_LOV(29,c029,'HMSNATURE','onchange="saveNature('||seq_id||')"','YES','A','-- Select Nature of Sale --','f29_'||seq_id,''),'Y','N/A') Nature_Of_Sale,
    c030,
    c031,
    c032,
    c033,
    c034,
    c035,
    c036,
    c037,
    c038,
    c039,
    apex_item.select_list_from_LOV(40,c040,'HMS_AREA_CODE','style="background-color:#FBEC5D;" class="hms_info"
    ',null,null,null,'f40_'||seq_id,'')  HMS_AREA_CODE,
    c020,
    apex_item.text(41,TO_NUMBER(c041),5,null, 'class="hms_info"','f41_'||seq_id,'') Sale_Price,
    c042,
    c043,
    c044,
    c050
    from apex_collections
    where collection_name = 'SPECIES_COLLECTION' order by seq_id

    I hope it's the done thing to add to an old thread, instead of starting a new one.
    I'd like to be able to clear my form history, but not clear my search history.
    I'm using Firefox 7.0.1, but it still seems to be a combined option.
    Would it be possible to separate the two options in later versions?
    I've found two extensions that might help, but it would be nice to simply have two separate options.
    https://addons.mozilla.org/en-US/firefox/addon/form-history-control/
    https://addons.mozilla.org/en-US/firefox/addon/clear-form-history/
    Thanks in advance.

  • Is there any way to set direction of syncing? I mean from desktop firefox to mozzila's servers or vice versa

    Hi
    Imagine I have a desktop Firefox and an Android Firefox. I create an account and sync desktop Firefox with Android Firefox. Now I disconnect sync in my Desktop.
    For one week sync is disconnected and I changed my bookmarks a lot. After a week I want to sync them again. But if I sync desktop I will lose my bookmarks! actually they return to last week.
    What can I do? I must create another account? Is this way reasonable?
    I use Firefox 32.0.3 and there is no pair device and other thing that were in previous versions.
    Thanks

    HI i.akbari,
    Thank you for using the new Firefox Sync. The new feature of this sync has a few changes.
    Yes, there is only one status for syncing between devices. All of the content is merged and each setting will only sync what you select. It is also not meant to be a back up service, just to sync data between devices.
    Please may a local back up of your profile. [[Back up and restore information in Firefox profiles]]

  • Is there any way to set up Firefox sync without using a PC?

    I am try to set up Firefox to sync between my tablet and phone on android without having to use a PC as an intermediary. I Is this possible? I I don't see any option to create an account or enter a sync code on the android version.

    You will require a computer. Sorry for any inconvenience.

  • Is there a way to move all information from the iPhone onto a USB drive without using a computer?

    Is there a way to transfer all information from the iPhone to a USB device/drive without the use of a computer?  Can this be done via USB hookup with an app?

    Thank you for your quick response.
    Are there any apps that can do this, or is there a way to create an app to do this?

  • Is there any way to set an image from your camera roll as a wallpaper without having a shadow over it on iOS7?

    Everytime you set a picture from Camera Roll as a wallpaper a dark shadow appears on the top and the bottom of the image.
    Is there anyway one can turn this off? I've noticed this doesn't happen with the preset wallpapers the phone brings.. Thanks
    Any suggestions would be appreciated!
    Thanks,
    Emilia

    I believe the iPhone does this a default so you can view the time more clearly   There is no way to turn this I think. But I have found zooming in on an image ever so slightly and moving it around can change the effect.  Good luck

  • Is there a way to automatically resize the text box to fit the text inside, without using the selection tool to resize the corners in Illustrator and Photoshop?

    I'm wondering if there is a way where I can quickly resize a text box to fit exactly around the text inside, so pretty much the smallest the text box can go without being too small to fit the text? I know you can do this manually with the selection tool, but is there a button/command that automatically does this in one go?
    Thanks

    Try this script. Save the page as .jsx the the "Presets>Scripts" AI folder. When you restart AI it will appear in the "Scripts" menu. Select the text block and run the script.
    Thanks to Nathaniel Vaughn KELSO for the script.
    http://kelsocartography.com/scripts/scripts/nvkelso/FitToTextContent_v2.jsx

  • Is there a way to automatically resize the text box to fit the text inside, without using the selection tool to resize the corners in Illustrator?

    I'm wondering if there is a way where I can quickly resize a text box to fit exactly around the text inside, so pretty much the smallest the text box can go without being too small to fit the text? I know you can do this manually with the selection tool, but is there a button/command that automatically does this in one go?
    Thanks

    The short answer is No. But I see that Ray has given you an option.

  • Is there any way to restore data from an external drive to another external drive without using the macbook pro you backed up?

    Is that I sold my macbook pro an the person who bought it needs it quickly so I have an external drive but it is not portable so I bought a portable external drive but it may take a while to arrive so I backed up my data with the external drive that I have in my house but I would like to know if I can restore my data to the new external drive without the macbook pro and just with the external drive of my house to the portable external drive.
    Thank you

    No, that's not possible. A computer is required in order to effect such a transfer. Connect both drives to your computer. You can use Disk Utility to clone one drive to the other. Be sure you first partition and format the new drive:
    Drive Partition and Format
    1. Open Disk Utility in your Utilities folder.
    2. After DU loads select your hard drive (this is the entry with the mfgr.'s ID and size) from the left side list. Click on the Partition tab in the DU main window.
    3. Under the Volume Scheme heading set the number of partitions from the drop down menu to one. Click on the Options button, set the partition scheme to GUID then click on the OK button. Set the format type to Mac OS Extended (Journaled.) Click on the Apply button and wait until the process has completed.
    4. Select the volume you just created (this is the sub-entry under the drive entry) from the left side list. Click on the Erase tab in the DU main window.
    5. Set the format type to Mac OS Extended (Journaled.) Click on the Security button, check the button for Zero Data and click on OK to return to the Erase window.
    6. Click on the Erase button. The format process can take up to several hours depending upon the drive size.
    Steps 4-6 are optional but should be used on a drive that has never been formatted before, if the format type is not Mac OS Extended, if the partition scheme has been changed, or if a different operating system (not OS X) has been installed on the drive.
    Clone using Restore Option of Disk Utility
      1. Open Disk Utility in the Utilities folder.
      2. Select the destination volume from the left side list.
      3. Click on the Restore tab in the DU main window.
      4. Select the destination volume from the left side list and drag
           it to the Destination entry field.
      5. Select the source volume from the left side list and drag it to
          the Source entry field.
      6. Double-check you got it right, then click on the Restore button.
    Destination means the new external drive. Source means the old external drive.

  • Is there a way to set the default reminder to "two days"?

    When I switched from iCal to iCloud Calendar I lost the ability to have all reminders set to 2 days!  Is there a way to set this as the default for iCloud Calendar?

    That's only possible with events.

  • Is there a way for multiple users to sync to iCloud  with only one administrator?

    Is there a way to have multiple users sync to an iCloud account with single administrator so the files cannot be changed on the cloud?  This would be for sales people to have the latest product shots without the ability to delete or change the albums in iPhoto.

    I don't believe so.  Every device that is signed into a shared iCloud account has the same privileges.

  • Is there a way to set up an automatic paste function for frequently used phrases

    Is there a way to set up an automatic paste function for frequently used phrases.
    My husband has an unusually long email address which he cannot change - he is not good at typing. I would like to help him by creating a sort of shortcut or auto paste function on his IMac to save him time and frustration. Any suggestions?
    Thanks

    Are you really using an earlier OS than Mac OS 8.6?  That would be either 8.1, or 8.5 if I recall correctly.
    Apple's classic forum, see:
    https://discussions.apple.com/community/mac_os/classic_mac_os?view=discussions#/ ?tagSet=1037
    You need to look for:
    -- remap or rename keyboard keys
    -- keyboard macros
    At this site look for
    http://trace.wisc.edu/world/computer_access/mac/macshare.html#applwindows
    EasyTyper 1.0.2
    TypeIt4Me
    resEdit maybe a possibility ... free
    http://hintsforums.macworld.com/archive/index.php/t-32745.html
    You could creae a file with common words & phrases in it & copy & past.
    SmartKeys 3
    http://trace.wisc.edu/world/computer_access/mac/macshare.html#applwindows
    Robert

Maybe you are looking for

  • How can I get Safari to prompt for cookies?

    I've always used Firefox, but would love to move to Safari for its iCloud integration, but  it's a major frustration and  a deal breaker that it doesn't provide an option to prompt for setting cookies. Every other major browser does. What's the deal?

  • Has anyone solved the problem of receiving duplicate e-mails?

    I've posted this previously, but not gotten any satisfactory responses. A mail account I've been using for years is suddenly receiving duplicates. I have about ten mail accounts on my Mail app, and only this one is having this problem. I haven't chan

  • Payment Terms description for free entry(p006-Others)

    Hi Frds, I have one requirement regarding we have 6 payment terms but last payment term p006-Others,if user is creating vendor master record if he selected payment terms p006 user has to enter the description manully based on his requirement. for thi

  • Power USB Hub shutting down iMac while in sleep

    Hello, First time using the forums here and I do apologized if this has been discussed before. I recently purchased a power 7 port USB hub (Newer Technology) from OWC. I plugged it in and everything seems to work great. However, when my iMac goes to

  • Dynamica SQL

    We have created a lot of "MATERIALIZED" views for each parameter values. For example, for parameter A, we would like to use materialized view A. So the final sql would be "SELECT * FROM materialized_view_A". And for parameter B, we would like to use