Can I sync to Mac AND PC at the same time.

This is probably a long shot, but can I synchronise my contacts and calendar my iPhone 3G to BOTH my home Mac (Address Book and iCal) AND my PC at work (Outloook)?
Thanks

Actually, this is not entirely accurate. If your work email is carried on an Exchange server, you can set up the mail account so that it is pushed to the iPhone, and likewise with the Calendar and Contacts. (Not sure yet if you can sync both the Outlook calendar AND iCal, or the Outlook contacts AND Address Book, although I doubt it.) However, even if you choose to sync email, etc. through Exchange, you can sync your music on a Mac through iTunes.

Similar Messages

  • Can I setup my P1606dn to eprint both Mac and PC at the same time?

    Can I setup my P1606dn to eprint both Mac and PC at the same time?

    Hi Poindexter65,
    There is no setup involved to ePrint from a computer.  So, the answer is yes.  All you need to do in order to ePrint, is send an email (attaching whatever you wish to print) to the printer's email address.
    Here is a link with more information about ePrint and specifications for attachment types, file sizes, etc.:  https://h30495.www3.hp.com/help#eprint
    If I have solved your issue, please feel free to provide kudos and make sure you mark this thread as solution provided.
    Although I work for HP, my posts and replies are my own opinion and not those of HP.

  • Can we use Badi BBP_SOURCING_BADI and BBP_DETERMINE_LOGSYS at the same time

    Hi everyone,
    We need you help. We are working in SRM 7 and ECC 6 EhP 4. We have a doubt. Can we use badis BBP_SOURCING_BADI and BBP_DETERMINE_LOGSYS at the same time in a classic scenario?
    We want to create the contract in ECC, and then we want to return the SC in SoCo in order to create the PO with the SC and the contract.
    We activate both, but the SC is not returned in SoCo.
    Thanks,
    Ivá

    Hi Ivan
    You can use both badi to change srm standard behavior.
    but one shopping cart item and it can have only one follow on document either Contract or Purchase order.
    i presumed that you want to use same sc for two purposes to create both SC and PO but it is not possible.
    for example
    shopping cart item has follow on document created  as a contract But you need to create a another shopping cart to create a Purchase order  w.r.t that contract .
    Once follow on documents are created sourcing flag will be removed .- rule
    BBP_SOURCING_BADI - you can write your custom logic and make way to cockpit .
    BBP_DETERMINE_LOGSYS - Determine your logical system.
    Muthuraman

  • Can I use both cs and cc at the same time?

    Can I use both cs and cc at the same time after upgrade to Adobe Creative Cloud?

    Yep. I have CC and CS installed and they both work. However, I don't see why I should use cs.
    Regards
    Kasper

  • CC on Mac and PC at the same time

    Hello, I want to buy CC in the near future, but i like to know one more thing. In CC are 2 installations at the same time possible. Can i have one on my destkop PC and one at my Girlfriends mac book?
    Thank you for help

    Hi there
    From the FAQ: Creative Cloud Help | Creative Cloud / Common Questions
    Can I use the software I download from Creative Cloud on more than one machine?
    Yes. Creative Cloud desktop applications can be downloaded and installed on multiple computers, regardless of operating system. However, activation is limited to two machines per individual associated with the membership. See the terms of use for more information. Learn how to deactivate a Creative Cloud license on a machine.
    The subscription is licensed to one individual so can't be used on 2 computers at the same time. 
    Thanks
    Bev

  • Why can't I run Safari and Skype at the same time without making my computer freeze up?

    I can't believe I can't run Safari and Skype at the same time without my computer freezing up, it's a MacBook Pro with Mac OS 10.6.8 and it has an Intel Core 2 Duo CPU with 2.2 Ghz and 2 Gb of RAM. Is this a hardware problem or a software problem?

    I haven't gone to the trouble of actually testing to see which uses more CPU power, but Firefox has been faster than Safari on every Mac I've ever owned.
    To see CPU usage by process, open the terminal (in Utilities) and enter 'top' at the command line. You might have to expand the window as processes don't appear in any logical order.
    It could also be hardware-related: I have late 2009 mini with similar specs and it pinwheels easily.

  • Can we use both INSERT and UPDATE at the same time in JDBC Receiver

    Hi All,
    I would like to know is it possible to use both INSERT and UPDATE at the same time in one interface because I have a requirement in which I have to perform both the task.
    user send the file which contains both new and old record and I need to save those in MS SQL database.
    If the record exist then use UPDATE otherwise use INSERT.
    I looked on sdn but didn't find any blog which perform both the things at the same time.
    Interface Requirement
    FILE -
    > PI -
    > JDBC(INSERT & UPDATE)
    I am thinking to use JDBC Lookup but not sure if it good to use for bulk record.
    Can somebody please suggest me something or send me the link of any blog or anything to solve this problem.
    Thanks,

    Hi ,
              If I have understood properly the scenario properly,you are not performing insert and update together. As you posted
    "If the record exist then use UPDATE otherwise use INSERT."
    Thus you are performing either an insert or an update which depends on outcome of a search if the records already exist in database or not. Obviously to search the tables you need " select * from ...  where ...." query. If your query returns some results you proceed with update since this means there are some old records already in database. If your query returns no rows  you proceed with "insert into tablename....." since there are no old records present in database.
      Now perhaps the best method to do the searching, taking a decision to insert or update, and finally insert or update operation is to be done by a stored procedure in MS SQL database.  A stored procedure is a subroutine available to applications accessing a relational database system. Here the application is PI server.   If you need further help on how to write and call stored procedure in MS SQL you can look into these links
    http://www.daniweb.com/web-development/databases/ms-sql/threads/146829
    http://www.sqlteam.com/article/stored-procedures-parameters-inserts-and-updates
    [ This part you can ignore, Since its not sure that you will face this situation
        Still you might face some problems while your scenario runs. Lets consider this scenario, after the stored procedure searches the database it found no rows. Thus you proceed with an insert operation. If your database table is being accessed by multiple applications (or users) other than yours then it is very well possible that after the search operation completed with a null result, an insert/update operation has been performed by some other application with the same primary key. Now when you are trying to insert another row with same primary key you get an error message like "duplicate entry not possible for same primary key value". Thus you need to be careful in this respect. MS SQL has a feature called "exclusive locks ". Look into these links for more details on the subject
    http://msdn.microsoft.com/en-us/library/aa213039(v=sql.80).aspx
    http://www.mssqlcity.com/Articles/Adm/SQL70Locks.htm
    http://www.faqs.org/docs/ppbook/r27479.htm
    http://msdn.microsoft.com/en-US/library/ms187373.aspx
    http://msdn.microsoft.com/en-US/library/ms173763.aspx
    http://msdn.microsoft.com/en-us/library/e7z8d5hf(v=vs.80).aspx
    http://mssqlserver.wordpress.com/2006/11/08/locks-in-sql/
    http://www.mollerus.net/tom/blog/2008/03/using_mssqls_nolock_for_faster_queries.html
        There must be other methods to avoid this problem. But the point is you need to be sure that all access to database for insert/update operations are isolated.
    regards
    Anupam

  • Can i use Firewire 800 and 400 at the same time?

    I have a HD connected to my 800 port works fine and a GL-2 camera on the 400 and final cut pro won't see the camera. Can I have 2 devices hooked up at the same time?

    Yes. But you did not say whether the camera works alone or not at all. In the latter case it could be the camera isn't compatible.
    Why reward points?(Quoted from Discussions Terms of Use.)
    The reward system helps to increase community participation. When a community member gives you (or another member) a reward for providing helpful advice or a solution to their question, your accumulated points will increase your status level within the community.
    Members may reward you with 5 points if they deem that your reply is helpful and 10 points if you post a solution to their issue. Likewise, when you mark a reply as Helpful or Solved in your own created topic, you will be awarding the respondent with the same point values.

  • Can i sync an ipad and iphone on the same computer

    I've got an iPhone 3GS and am thinking of getting an iPad 2 as well.  How does syncing the 2 devices on the same computer work?  Also, can I share Apps that I have purchased across the 2 devices, or do you have to pay for them twice?

    I am syncing my iPad and my iPod Touch using iTunes on the same computer.
    It's even possible to connect both devices at the same time to iTunes.
    Yes, apps are shared between devices, but only if those apps are actually able to run on both devices.
    You therefore only need to buy a certain app once and use it on your two devices.
    Your devices are in fact administratively attached to your Apple ID.

  • IPhone - how to sync with iPhoto and Aperture at the same time ???

    I'm having a really hard time with syncing my photos - I'm using iPhoto and Aperture on my Mac. When I launch iTunes and start managing my iPhone, it seems like I should be able to sync photos from a variety of sources all at once (iPhoto, Aperture, other folders).
    However, whichever option I select in the photos drop-down becomes the only libraries that are available to sync. What I mean is that if I select some of the Albums in my iPhoto list and sync those, when I later drill down to Aperture and select albums from there and perform a sync - then the previously synced/loaded albums and photos from iPhoto are automatically removed from the iPhone.
    Why can't I sync between multiple photo albums / sources at the same time? This is incredibly annoying.

    Here's how I solved this problem:
    In Aperture, select File -> Import -> iPhoto Library
    Then under the "Store Files" dropdown, be sure "In their Original Location" is select. This will allow Aperture to see your iPhoto library, but it will be managed by reference rather than phyisically imported.
    Now, in iTunes, select Aperture as the application from which you want to synch photos, and select the option to synch specific albums.
    You should be able to see the names of albums in iPhoto as well as those created in Aperture.

  • Using AExpress with mac and PC at the same time?!

    I spent all day with this issue, not resolved some...but
    I am getting a blinking amber light after reseting my airport express, but yet it is the only way it connects my mac and my pc together on the device at the same time, without shutting one out,
    How can I get them to share the base station and have the normal green light? if they have a green light it disconnects my pc wirless connection. Are there shared settings somewhere?
    windows xp pro sp3
    wireless usb card: belkin F5D9050
    mac macbook 10.5 osx
    airport card/utility
    airport express downloaded 5.4.3 version for windows

    Thanks Tesserax
    well, after 12 hours and trials I solved it myself, but I am considering more people have this issue, so I will share.
    (make sure any adapter you buy is 802.11g/n/b compatible)
    I had a Belkin F5D9050 USB card,
    so install the latest updated driver for it, not the one with the cd!!!
    found here: http://www.belkin.com/ca/support/article/?lid=enc&pid=F5D9050&aid=13773&scid=223
    depending on your OS, pick one...but install driver first, then connect the usb card.
    Then install the latest Airport Utility (*NOTE: there are alot of old ones that do not work out there!) Only use this one!
    Airport Utility: 5.4.2 June 2009
    http://support.apple.com/downloads/AirPortUtility_5_4_2Windows
    If the AE utility doesn't detect your base station, press the reset button (until amber light flashes quickly), and then try re-scan again! do this until it shows up, then the installer will begin, if the amber light keeps blinking you need to reset again, once it works the lights will alternate between green and amber, then stay green.
    IF YOU HAVE A MAC HOOKED UP: uninstall your airport base station from the unit for now, you can install it later after you configure your pc! The PC is sensitive and will not share the network, but mac will after.
    Once the green light stays on you will be connected to wireless internet. Now you can connect your mac again.
    I stumbled through this setup through trial and error, so do not quote me, but it worked for me.
    If you have a password for it, write it down, you will need to enter it to connect to your base station again. This is the best way to stay online, and not have others stealing your wireless, or files.
    You can share files to your PC and vise versa, just be sure to read up on sharing in Mac Osx.
    If all goes well, now your PC and mac can be on the same base station at the same time.
    If it works with amber light flashing it does, but is NOT connected right.
    The light should be solid green.
    TRUST ME, NO ONE HAS GOOD TIPS OUT THERE, AND CHAT SUPPORT DOES NOTHING!
    I am sure I am forgetting something, but if you have an issue...just message me.
    Message was edited by: Laurencia7

  • Can not connect to printer and internet at the same time

    I use my airport to connect to the internet via the ethernet port. Internet was working fine until I connected my printer to airport via its USB port. Now the printer works fine but I can't connect to the internet using the same connection.
    I can still connect to the same server using its wireless service, but I have to keep hitting the drop down list in the menu bar to select that connection. Can't I just keep connected to the same connection without having to switch back and forth? I thought these mac products were supposed to be all user friendly... I don't have time for this.

    The only way to print and use the internet (or university network) at the same time is to do one of the following:
    (1) Connect the printer via USB to your computer.
    (2) Connect the AirPort Extreme base station (AEBS) via Ethernet to the university's network and then configure the AEBS to act as a bridge (not sharing a single IP address).
    The AEBS can NOT wirelessly join the network.

  • Can my ipad use wifi and bluetooth at the same time?

    Hi
    I can stream radio via wifi radio apps and play through earphones. I can connect to my bluetooth speaker and play music stored on my ipad ok.
    When I connect up to my bluetooth speaker and try to stream the radio app it plays for a couple of seconds then stops for 20 seconds then plays for 2 seconds and carries on start, stop, start (I guess it's buffering or something?).
    Is it not possible to listen to a radio app and stream it to a bluetooth speaker at the same time?
    Any suggestions welcome

    Thanks for confirming it should work man.
    A quick check of the talktalk forum and it's my talktalk D-link 2780 router. It's a known problem.
    It all works ok on next doors router so Off to PC World for a decent router.
    Thanks again.

  • Can't watch a programme and record at the same time.

    I rang Sky who say it's nothing to do with them. Gave me Lovedigital number. Rang them they said contact my landlord. Rang Bristol City Council, they say it's nothing to do with them.

    What I meant is the number of cables going into your Sky box. If there is only one cable going to your Sky box, that answers the question of why you can't watch one thing and record another at the same time - your Sky + box would require two inputs to do that. From what you've said it sounds like a communal dish set up. If that is right then whoever looks after that are the people you need to contact to see about the possibility of getting a double feed into your home. 

  • Why can't i use wifi and bluetooth at the same time?

    I recently bought a Philips docking speaker that has bluetooth connectivity for streaming music wirelessly from my Ipod Touch. The bluetooth/speaker works great, but, my Touch won't allow me to be online AND use the bluetooth at the same time. This is really annoying when you want to listen to music and check your emails. Am I doing something wrong?? Any  help would be gratefully received.

    I can use by BT headphones while my iPod is connected to the internet via wifi with no problems. I am uncertain how the Philips' system works.  Does it have its own BT transmitter/receiver or doe it use the iPods to stream to its speaker?

Maybe you are looking for