Help with phone and laptop

So I've never plugged my iphone 4s into my Sony laptop before and I was wondering that if I do will it delete anything I have on the phone like pictures or music?

So I basically can't plug my iphone into my laptop? What content will it replace it with?

Similar Messages

  • IPhone is plugged in to my laptop and is charging but will not sync. The phone logo doesn't appear in the right hand corner.  i have updated itunes restarted both phone and laptop, changed connectors and still nothing. help?

    IPhone is plugged in to my laptop and is charging but will not sync. The phone logo doesn't appear in the right hand corner.  i have updated itunes restarted both phone and laptop, changed connectors and still nothing. help?

    Same thing happened to me, nothing is working. I've updated everything, restarted everything, nothing seems to work.

  • I have a 16GB iPhone 3GS. Tried synching my phone through iTunes (11.0.1 I think... on a 2009 Macbook Pro). Now when I connect to iTunes, it says it does not recognise the content on my phone. Is this because my phone (and laptop) are too old?

    I have a 16GB iPhone 3GS. Tried synching my phone through iTunes (11.0.1 I think... on a 2009 Macbook Pro). Now when I connect to iTunes, it says it does not recognise the content on my phone. Is this because my phone (and laptop) are too old?
    Also, when I tried to Restore the settings, an Error Message pops up that says " The iPhone software update server could not be contacted. The requested resource was not found.
    I'm trying to free up space on my phone by removing [literally] thousands of old photos which were originally synched to the phone, because I had forgotten to uncheck the photos button when I synched it ages ago.
    I have also tried synching it on my 24" iMac (running OSX Snow Leopard). But again, when I try restoring the phone through itunes, it says the file is corrupted. It sggests unplugging the device, and then plugging it in again. I have done this numerous times with no success.
    I'm guessing it must be because my phone (and versions of iTunes, and OSX) are all too old.
    Please can anybody help.
    Cheers,
    Dan_nz.

    There are multiple reasons that lead to issue. You should read the troubleshooting guide to get the right solution to solve the issue: iPhone, iPad, or iPod touch not recognized in iTunes for Windows - Apple Support

  • Help with writing and retrieving data from a table field with type "LCHR"

    Hi Experts,
    I need help with writing and reading data from a database table field which has a type of "LCHR". I have given an example of the original code but don't know what to change it to in order to fix it and still read in the original data that's stored in the LCHR field.
    Basically we have two Function modules, one that saves list data to a database table and one that reads in this data. Both Function modules have an identicle table which has an array of fields from type INT4, CHAR, and type P. The INT4 field is the first one.
    Incidentally this worked in the 4.7 non-unicode system but is now dumping in the new ECC6 Unicode system.
    Thanks in advance,
    C
    SAVING THE LIST DATA TO DB
    DATA: L_WA(800).
    LOOP AT T_TAB into L_WA.
    ZDBTAB-DATALEN = STRLEN( L_WA ).
    MOVE: L_WA to ZDBTAB-RAWDATA.
    ZDBTAB-LINENUM = SY-TABIX.
    INSERT ZDBTAB.
    READING THE DATA FROM DB
    DATA: BEGIN OF T_DATA,
                 SEQNR type ZDBTAB-LINENUM,
                 DATA type ZDBTAB-RAWDATA,
               END OF T_TAB.
    Select the data.
    SELECT linenum rawdata from ZDBTAB into table T_DATA
         WHERE repid = w_repname
         AND rundate = w_rundate
         ORDER BY linenum.
    Populate calling Internal Table.
    LOOP AT T-DATA.
    APPEND T_DATA to T_TAB.
    ENDLOOP.

    Hi Anuj,
    The unicode flag is active.
    When I run our report and then to try and save the list data a dump is happening at the following point
    LOOP AT T_TAB into L_WA.
    As I say, T_TAB consists of different fields and field types whereas L_WA is CHAR 800. The dump mentions UC_OBJECTS_NOT_CONVERTIBLE
    When I try to load a saved list the dump is happening at the following point
    APPEND T_DATA-RAWDATA to T_TAB.
    T_DATA-RAWDATA is type LCHR and T_TAB consists of different fields and field types.
    In both examples the dumps mention UC_OBJECTS_NOT_CONVERTIBLE
    Regards
    C

  • Help with count and sum query

    Hi I am using oracle 10g. Trying to aggregate duplicate count records. I have so far:
    SELECT 'ST' LEDGER,
    CASE
    WHEN c.Category = 'E' THEN 'Headcount Exempt'
    ELSE 'Headcount Non-Exempt'
    END
    ACCOUNTS,
    CASE WHEN a.COMPANY = 'ZEE' THEN 'OH' ELSE 'NA' END MARKET,
    'MARCH_12' AS PERIOD,
    COUNT (a.empl_id) head_count
    FROM essbase.employee_pubinfo a
    LEFT OUTER JOIN MMS_DIST_COPY b
    ON a.cost_ctr = TRIM (b.bu)
    INNER JOIN MMS_GL_PAY_GROUPS c
    ON a.pay_group = c.group_code
    WHERE a.employee_status IN ('A', 'L', 'P', 'S')
    AND FISCAL_YEAR = '2012'
    AND FISCAL_MONTH = 'MARCH'
    GROUP BY a.company,
    b.district,
    a.cost_ctr,
    c.category,
    a.fiscal_month,
    a.fiscal_year;
    which gives me same rows with different head_counts. I am trying to combine the same rows as a total (one record). Do I use a subquery?

    Hi,
    Whenever you have a problem, please post a little sample data (CREATE TABLE and INSERT statements, relevant columns only) from all tables involved.
    Also post the results you want from that data, and an explanation of how you get those results from that data, with specific examples.
    user610131 wrote:
    ... which gives me same rows with different head_counts.If they have different head_counts, then the rows are not the same.
    I am trying to combine the same rows as a total (one record). Do I use a subquery?Maybe. It's more likely that you need a different GROUP BY clause, since the GROUP BY clause determines how many rows of output there will be. I'll be able to say more after you post the sample data, results, and explanation.
    You may want both a sub-query and a different GROUP BY clause. For example:
    WITH    got_group_by_columns     AS
         SELECT  a.empl_id
         ,     CASE
                        WHEN  c.category = 'E'
                  THEN  'Headcount Exempt'
                        ELSE  'Headcount Non-Exempt'
                END          AS accounts
         ,       CASE
                        WHEN a.company = 'ZEE'
                        THEN 'OH'
                        ELSE 'NA'
                END          AS market
         FROM              essbase.employee_pubinfo a
         LEFT OUTER JOIN  mms_dist_copy             b  ON   a.cost_ctr     = TRIM (b.bu)
         INNER JOIN       mms_gl_pay_groups        c  ON   a.pay_group      = c.group_code
         WHERE     a.employee_status     IN ('A', 'L', 'P', 'S')
         AND        fiscal_year           = '2012'
         AND        fiscal_month          = 'MARCH'
    SELECT    'ST'               AS ledger
    ,       accounts
    ,       market
    ,       'MARCH_12'          AS period
    ,       COUNT (empl_id)       AS head_count
    FROM       got_group_by_columns
    GROUP BY  accounts
    ,            market
    ;But that's just a wild guess.
    You said you wanted "Help with count and sum". I see the COUNT, but what do you want with SUM? No doubt this will be clearer after you post the sample data and results.
    Edited by: Frank Kulash on Apr 4, 2012 5:31 PM

  • Why is my Ipad2 not connecting to my network when phone and laptop connect successfully?

    Why is my Ipad 2 not connecting to my network when phone and laptop connect immediately?

    Could be all sorts of reasons, Can you give us more details about your setup?
    Check to see if the wifi is turned on the the iPad. That would be the first thing I would check.
    Next what is the configuration of your network? Do you have a password setup to prevent others from connecting to your network? Any details you can provide will make it easier to figure out where your probem is.
    Paul

  • MOVED: [Athlon64] Need Help with X64 and Promise 20378

    This topic has been moved to Operating Systems.
    [Athlon64] Need Help with X64 and Promise 20378

    I'm moving this the the Administration Forum.  It seems more apporpiate there.

  • My ipad 3 keeps dropping the wifi connection when my android tablet, android phone, and laptop have never had any issues.

    I just got a verizon ipad and am having wifi connection problems.  It will connect to my wifi but every 5 or 10 minutes it will drop the connection.  The only way to get it back is to go and manually connect to it again in the wifi settings.
    Is anyone else having this problem?  My android tablet and phone and laptop do not have this problem.

    It appears hundreds are having this problem.  You must not have done a search for this subject before posting.  Try a search for "wifi connection problem on iPad 3" and you'll get lots of information regarding this problem and a few suggestions you can try.

  • Help needed with contact/groups synching between phone and laptop via cloud

    I installed OS X 10.7.5 and my software is up to date on both my I-phone and my MacBook. I have the cloud enabled. But now, when I try to access my contact groups on my I-phone, I just get the list of groups with checks beside them; I can't select a group and have those contacts displayed as they were
    prior to installing the updates. I have cloud enabled and can see the groups displated when I go to the cloud.com site. But how do I get my iphone to display contacts by groups again? If I click on "Done" with all contacts and all groups checked, the display goes out of the groups category and back to the
    list of all contacts. Do I need to change something in settings? At present, when USB-connected to the Mac and in I-tunes and looking at "information"
    for my Iphone, I don't have synch contacts selected. I thought synching was happening via the cloud. I didn't make any change in that I-tunes synch setting
    compared with before installing the new operating system and updating the rest of my software. If I need to check "synch contacts," do I check synch all
    contacts or the box for synching groups. I want to have all my contacts and all group organization that's on my computer duplicated on my phone and would like to have synching happen without having to physically connect the phone to my computer.  Help would be appreciated!

    http://www.apple.com/business/theater/#managegroupsofcontacts
    Download the "Groups" app from the app store.  It is free. 

  • Can anyone help with icloud and apple accounts getting mixed up on 2 phones?

    Basically husband upgraded from 4s to 5c. Gave dad 4s. I tried to set his dad up with icloud and apple id but didn't realise husbands old sim card was in 4s. Now neither phone works and husband very annoyed his apple id and password don't work anymore. Please help!!!

    Hi Chris
    So husband got new phone. Was all set up and up and running when we left the shop
    Gave dad the old phone. It was locked to Vodafone so we had to ask them to unlock. He then got his three sim cut down to fit.
    Weeks after husband had his 5c we went to dads to set his 4s up. I upgraded it to latest software iOS something. Anyway didn't realise it was husbands old sim still in phone.
    After upgrade it asked me to set up apple account (I think) could have been icloud. Anyway I started setting it up with dads email and password choice. Husband then saw message on his 5c saying his dads email was being added to something on his phone.
    At this point I left alone but now when husband tries to use his apple id for apps etc it says invalid user id or password. It's as though the 2 have got mixed up. Bit it won't let him reset his password?
    Does this make sense?

  • Can anyone help with iPlayer and Sky Mobile?

    Ok, I'm so close to giving up with this useless phone. There are 3 apps on my N97 which give me a constant headache.
    BBC iPlayer
    Sky Mobile*
    YouTube
    *I should point out that I only use Sky Mobile to set recordings on my Sky+. I do not use it for, nor have any desire to use it for actually watching Mobile TV.
    All of these apps work absolutely fine over my home WiFi network. It's when I try to use them over 3G (my Vodafone Live! connection) that I start running in to trouble.
    All 3 give me connection problems, errors, and simply refuse to load half the time when on 3G. I got so annoyed I just did a hard reset the other week, and magically all three started working again. However, now 2 of them are failing me again. YouTube (touch wood) is working fine at the moment, but iPlayer and Sky Mobile just aren't.
    iPlayer sometimes works. But sometimes I get script errors (unable to load content), and sometimes it says something about checking my connection settings. I wouldn't mind but it's not actually possible to access any options for the iPlayer. Even in application settings there are no options you're able to set.
    Sky Mobile simply flat out refuses to work ever on 3G. But it did after I did a hard reset for a couple of weeks, now it just stopped working! It wont even load. It just gives the error message 'Unable to connect to network - please check connection settings" or something along those lines.
    I've tried so many different things. Tried setting my internet connections to 'always ask', tried setting it to default to Vodafone Live! all the time, tried setting my video streaming settings to WAP, all sorts. Every combination I can think of.
    I just can't wait to get rid of this phone. I've put so many people off buying one. They see it and think it's all swish and cool, and I just say 'Don't. You'll regret it'. I can't wait for my contract to be up so I can upgrade to an iPhone now Vodafone have got them.
    Can anyone help with these problems? Thanks in advance, but I don't hold out much hope...

    About iPlayer.
    Have a chat with Vodaphone. Streaming iPlayer over 3G IS allowed on Vodaphone contract, unlike my O2 contract. As long as your contract allows it, and you have the correct AP address, it should be fine. Vodaphone should be able to give you the setting.
    Mine only works over Wlan.
    FWIW, "... streaming over 3G is not currently available on iPhone handsets on any mobile network".
    p.s. Just to be clear. You say  "Tried setting my internet connections to 'always ask', tried setting it to default to Vodafone Live!".
    iPlayer uses the Nokia browser "Web". So that's where you should make the setting "Ask when needed". It should then offer you the choice of whatever you've set in Destinations> Internet> then select whatever you've chosen as your GPRS connection.(as advised, or sent to you by Vodaphone).

  • Help with phone line in new home

    I hope someone can help me.
    I have moved into a new rental flat. There is a telephone socket and the phone still works. I was able to get the number by calling my mobile.
    However, how do I find out who this is connected to?   Although it is not in my name someone is either going to get a bill at somepoint or a company will be out of pocket.
    If I cannot find out who it is connected to, how do I trasnfer it?
    I also, only want to get internet access, but if I am required to set up a new telephone, can I only do this with BT? Some years ago I got stung by setting up a phone acount with BT and getting my internet through another provider a day later who transferred the phone line and I ended up having to pay BT a full years contract.  How do I avoid this?
    Very grateful for assistance.

    Keith_Beddoe wrote:
    What happens if you dial 150, do you get connected to BT?
    sky use 150 as well so they may well answer the call?
    (If I have helped you in any way to say "Thank You" please click on the star next to the message. Thank You)
    If I have solved your Issue please click the "Mark as accepted solution" button.

  • Help with N8 and Adobe Premiere?

    Hi, I am using Adobe Premiere Pro CS4 v4.1.0.
    I recently got a Nokia N8 and am now trying to edit the video recordings, but am having some problems.
    The phone records at 25fps 1280x720 using H.264 MPEG-4 codec, with sound in Stereo 130kbps 48 kHz.
    When I create a project and load the .mp4 file into it, the first problem I see is that it reads it as 500fps and the video is only a second or 2 long.
    I  then interpret the footage to the correct 25fps, and the video then works fine. However,  the sound seems to not be there.
    I've noticed that due to Premiere interpreting it as 500fps, it thus only plays the first second or two of the sound when left as 500fps and plays all the video in that second or two, and thus when changing to the correct 25fps, it is therefore only the two seconds playing over the entire minute of video.
    I also  tried changing the file into other formats. The only other one that  kind of worked was .mov. It allowed the sound to work perfectly, the  video loaded at correct frames, however, when playing the video on  premiere, it then showed black screen for most of the clip.
    Have  tried to find out about this online and installed a couple different  codec packs and media players, but nothing helped with this problem in  Adobe Premiere. However, the clip played fine in the media players, such  as RealPlayer.
    If anyone has any advice on this, it would be  appreciated. I would prefer to fix this issue correctly rather than have to manually interpret or transcode the footage each time I want to edit it.
    Btw, I also posted this question on a forum with Nokia N8 Users, and others also tried it out and had same or similar issues. They also tried on CS5 and it still didn't work.
    *UPDATE* I just tested again to change the file from .mp4 to .mov by simply renaming it, and this time it loaded perfectly into Premiere. However, I have to do this on my XP computer, as my Windows 7 doesn't change the format of file by simply renaming it. Hence, I would still like help with getting it to recognise the .mp4 correctly though in the first place, rather than having to rename my files each time on the XP computer.

    Moshpit84 did you utilize the uninstallers located in Applications/Utilities/Adobe Installers to remove your installation of Premiere Pro?  Also what version of the Adobe Application Manager are you currently using?

  • My wifi loses connection to my phone and laptop at the same time every 30 mins or so.

    Hey all.
      I have a WRT160 V2 router with firmware  v2.0.02. I have had the router for years without any problems. A few months ago I have started to see an issue where I lose connection to my internet on my laptop, and wifi on my phone at the same time. I have wifi calling on my phone and it disconnects also at the same time. All of a sudden, everything will stop working, then about 40 seconds later, it all works again. I lost the connection maybe every 30 to 60 mins
    Does anyone have an idea what can be causing this issue? Thank you. 
    It is really annoying because I rely on wifi calling for my primary phone, and I end up getting cut off when talking to people. BTW wifi calling is for all tmobile phones, but also normal wifi to surf the web on my laptop and phone drops too at the same time.

    I would suggest that you isolate the problem. You may start the isolation by connecting a computer directly to the router (hard wired connection). Observe the connection for couple of hours. If the connection is stable, problem might be on the wireless settings of the rotuer. If the connection is not stable, do further isolation. Connect the computer directly to your modem. Observe the connection for couple of hours. If the connection is not stable, call your internet service provider. If the connection is stable, problem might be on the router itself. Upgrade the firmware first (firmware available in the website: Ver.2.0.03 Build 9). After the upgrade, reset and reconfigure your router.

  • HELP WITH FASCINATE AND MEDIA MANAGER

    TRYING TO RUN VZ MEDIA MANAGER WITH FASCINATE TO TRANSFER PICTURES FROM PHONE TO PC BUT THE MEDIA MANAGER SAYS IT MUST SHUT DOWN BUT I CAN STILL USE PROGRAM WITH ERROR MESSAGE UP. WENT THROUGH ALL THE TRANSFER STEPS SAYS PICS WERE TRANSFERRED BUT NOTHING IS THERE ANY IDEAS

    Don't use vz mm. It sucks. Make sure you mount your phone/card right. Connect usb cable to phone and the other to a usb port on your cp. Pull down notification bar from the top of the phone screen, select to transfer, mount phone. Then just drag and drop or copy and paste. I ended up deleting the mm because it's slow, doesn't really work and imo is just an attempt towards win mp. Hope this helps!

Maybe you are looking for

  • Mail wont load or do anything!?!?!?!?!? :(

    Well i open up m mail app and it comes up with the rainbow mouse loader and does nothing. It does not even show me my current emails in my inbox.... i then go to the force quite app and it says " mail not responding " anyhelp? Will

  • Setting up a new iPad Mini

    I got my new iPad mini yesterday and attempted to set it up using my existing iPad back-up on iTune. I have set up many different apple devices previously, (new iPhones, iPads, iPods, etc) and they have always worked wonderfully. But when I did it wi

  • CPU usage 100%  when WLS 10.3.3 is idle on OS X 10.6.4 (Snow Leopard)

    I've installed WLS 10.3.3 on OS X 10.6.4 and executed using the instructions in the README (including setting the MEM_ARGS). Upon startup, the CPU usage spikes to ( then stays ) around *104%* ( dual-core CPU ); this, of course cripples the computer t

  • Link Aggregation: LGS318P Switch and LRT214 Router

    The manual for my LGS318P is a little confusing (perhaps because I'm relatively new at more advanced features of networking). I have an LRT214 router that I'm now routing all traffic through my LGS318P in the basement.  From there it goes to multiple

  • Change in Condition value

    Hi all,     Can you please let me know whether the currency of the condition value in the purchase order can be changed. In my scenario, we have document currency as USD. But certain conditions like freight, customs are invoiced in local currency (XO