Apps move from ipad to iphone, but NOT from iphone to ipad?  Please help.

Does anyone have an idea on how to solve this issue?

Apps don't move from one iOS device to another. That's impossible.
All apps originate from Apple. They are downloaded directly to your iPhone or iPad. Or, you can download them to your computer, then sync the iOS device using iTunes. In any event, you only have to pay for an app once. Anything you downloaded on one device can be downloaded to another device. Apple does not charge you for the same app twice, as long as you use the same Apple ID for both.

Similar Messages

  • PC crashed. CD-Rom not working. Downloaded CS5 Web Premium but not able to install. Please Help. Help.

    PC crashed. CD-Rom not working. Downloaded CS5 Web Premium but not able to install. Please Help. Help.

    I had problem with my CD-rom, it not able to open. On top of that recently my PC crashed.
    I managed to install other software, but not able to install CS5 Web Premium.
    Ive downloaded the electronic version via Adobe Downloads, but not able install it.

  • HT1848 This week I had 344 purchased songs; now 330. For example, Amy Whinehouse is under purchased but not on my library. Please help?

    I'm just trying to find my purchased music. I had 344 songs on Monday; and last night there were 330. I tried to transfer the missing music only like Amy Winehouse; but the system said the music was there. It's under purchased history, but not on my computer.

    There seems to an issue with the current build of iTunes not indexing the Music playlist correctly. Download the current iTunes Free Single of the Week. I know it sounds odd, but it should fix the problem. If that doesn't work close iTunes and delete the hidden file sentinel from inside the main iTunes folder, then start iTunes again. It should run a consistency check when it starts up which might resolve the issue.
    tt2

  • Page displays perfect in Safari, but not Internet Explorer...please help!

    Please help, this page looks fine in Safari, but in IE, the 2nd and 3rd column are spread out. I want everything to stay to the top;
    http://www.fuels4less.com/WORKING_INDEX_HELP3.htm
    Thank you in advance!

    HTML errors can cause all kinds of problems between browsers/versions/platforms.
    Visit http://validator.w3.org to get a listing of your errors (54 errors 3 warnings)
    If it's still not displaying correctly once your errors are cleaned out, post back and we can take a closer look.

  • Visual Basic TCPControl Help - I've Searched, Looked and Learn But not exactly getting it right - Please Help

    Simple Card Game - that works
    Now want to give it Multiplayer Functinality
    Also I am confused, how do I get the client to get information sent from my server to it, since it is not listening (and store it into a string)
    I really just want a bare bones code to
    have A Master Server that Can recieve Multiple Connections
    That Master Server Needs to be able to get messages from each user connected to it
    The Master Server Needs to be able to send Messages to each user connected to it
    each user (client) needs to be able to recieve and show messages recieved from the master server!
    That really sums it up - I need to stream line the network code.  I need to focus on the actual card game itself!
    Please Help!!!!
    1 - Player will start their game (client)
    2 - The client will connect to the server
    3 - Master Server Accepts the Connect
    4 - The Client will automatically send their login info as a string to the Master Server
    5 - Master Server Will check the string and get user info - if the Info is correct then the Master Server will send a message to the Client as a string letting it know it is connected
    6 - Master Server Will give that player a UniqueID
    7 - Master Server Will put Player in a list as An Available Player
    8 - 
    9 - Now
    10 - 
    11 - Player 2 will start their game (client)
    12 - The client will connect to the server
    13 - Master Server Accepts the Connect
    14 - The Client will automatically send their login info as a string to the Master Server
    15 - Master Server Will check the string and get user info - if the Info is correct then the Master Server will send a message to the Client as a string letting it know it is connected
    16 - Master Server Will give that player a UniqueID
    17 - Master Server Will put Player2 in a list as An Available Player
    18 - 
    19 - Now since there are 2 players
    20 - 
    21 - The 2 players are removed from the Available Player List
    22 - 
    23 - Master Server will randomly pick a player 1 to go first
    24 - Master Server Sends Message to Player to take turn (as a string code)
    25 - Player 1 plays a card - the card info is sent as a string to the master server
    26 - The Master Server then sends the Player 1 info to Player 2
    27 - Player 2 Client gets the info from the master server that contains the card info from player 1
    28 - Player 2 plays their card and the information is sent to the master Server
    29 - 
    30 - Until
    31 - 
    32 - One of the players is considered a winner
    33 - At that Time the Server will Record Player 1 as winner or loser and Player 2 as winner or looser  
    34 - Now The 2 Players are put back onto the available players list
    Now this is where I am stuck.
    Step 11 - 
    How do I get my progam to accept more than one person?
    So my problem is my TCPControl I guess  SO code below
    ClientTCPControl.vb (Class)
    Imports System.IO
    Imports System.Net
    Imports System.Net.Sockets
    Imports System.Threading
    Imports System.Text.RegularExpressions
    Public Class ClientTCPControl
        Public Client As TcpClient
        Public DataStream As StreamWriter
        Public Sub New(Host As String, Port As Integer)
            'Client
            Client = New TcpClient(Host, Port)
            DataStream = New StreamWriter(Client.GetStream)
        End Sub
        Public Sub Send(Data As String)
            DataStream.Write(Data & vbCrLf)
            DataStream.Flush()
        End Sub
    End Class
    MasterSercerTCPControl.vb
    Imports System.IO
    Imports System.Net
    Imports System.Net.Sockets
    Imports System.Threading
    Imports System.Text.RegularExpressions
    Public Class MasterServerTCPControl
        Public Event MessageReceived(sender As MasterServerTCPControl, Data As String)
        Public PublicServerIP As IPAddress = IPAddress.Parse("10.0.0.6")
        Public ServerPort As Integer = 64554
        Public Server As TcpListener
        Private ComThread As Thread
        Public IsListening As Boolean = True
        'CLIENTS
        Private Client As TcpClient
        Private ClientData As StreamReader
        Public Sub New()
            Server = New TcpListener(PublicServerIP, ServerPort)
            Server.Start()
            ComThread = New Thread(New ThreadStart(AddressOf Listening))
            ComThread.Start()
        End Sub
        Private Sub Listening()
            'Create Listener Loop
            Do Until IsListening = False
                'Accept Incoming Connections
                If Server.Pending = True Then
                    Client = Server.AcceptTcpClient
                    ClientData = New StreamReader(Client.GetStream)
                End If
                'Raise event for incoming messages
                Try
                    RaiseEvent MessageReceived(Me, ClientData.ReadLine)
                Catch ex As Exception
                End Try
                'Reduce CPU Usage
                Thread.Sleep(100)
            Loop
        End Sub
    End Class
    Client Code This Sub Runs when the Player Clicks the Connect Button
        Private Sub cmdConnect_Click(sender As Object, e As EventArgs) Handles cmdConnect.Click
            'Make Connection to Master Server
            Client = New ClientTCPControl("10.0.0.6", 64555)
            If Client.Client.Connected Then cmdConnect.Text = "Connected"
            varConnectedToServer = True
            'Create Login Credential String
            LoginCredentials = "login" & "," & varUserName & "," & varUserEMail & "," & varUserPassword & "," & varUserState & "," & varUserMachineIP
    & "," & varUserInternetIP & "," & varPlayerPort & ","
            SendLoginCredentialsMessage()
        End Sub
    Also I am confused, how do I get the client to get information sent from my server to it, since it is not listening (and store it into a string)
    I really just want a bare bones code to
    have A Master Server that Can recieve Multiple Connections
    That Master Server Needs to be able to get messages from each user connected to it
    The Master Server Needs to be able to send Messages to each user connected to it
    each user (client) needs to be able to recieve and show messages recieved from the master server!
    That really sums it up - I need to stream line the network code.  I need to focus on the actual card game itself!
    Please Help!!!!

    I suggest you search the net until you find something that sounds like it may be able to do what you want to do.
    Like this link from CodeProject
    C# \ VB .NET Multi-user Communication Library (TCP).
    Although for the server to work I suppose it will need to be on a machine which has a public internet IP address or perhaps port forwarding would need to be used or dynamic dns. Things which may cost extra or not be available from your ISP.
    What you need to know about the Internet
    Making your Computer Accessible from the Public Internet
    La vida loca

  • I bought something from an app and my product never appeared but it did take the money please help

    i had $10.10 in my apple account and i bought gems for $9.99 and it took the money cause i now have $0.11 but i didnt receive the gems on clash of clans

    Contact the application's creator or the iTunes Store staff.
    (122603)

  • Apps won't erase on iphone 5! Please help!

    I have an iphone 5, when I hold down an app icon, the rest of the icons start to shake, then I hit the "x", the "x" turns grey but then nothing happens after that, the app will not erase and the rest of the app icons continue to shake. Apps wont erase!

    What is the App?
    You cannot remove Core apps that come in iOS.

  • Disk full error, but not even close!!  Please help.

    I recently moved my I-Tunes music folder to an external hardrive on my network. Everything has been functioning great, but when I tried to make a purchase from the Itunes store today, I get the following message when trying to donload:
    **The disk you are attmpting to use is full**
    However, my preferences show the new location, which has over 150 GB available. I have not had any trouble adding to my library from other sources. My laptop has over 14 GB available, same as my Ipod. I cannot see where the source of the problem is. I have tried:
    *restarting Itunes
    *restarting my machine
    *repairing my disk permissions (based on another thread)
    None of these have eliminated the message and allowed download. Suggestions would be greatly appreciated.
    PowerBook G4 Mac OS X (10.4.8) Itunes 7.0.1

    I don't understand it either, and I didn't study the problem at all after I got it working. I've read accounts of people experiencing this with varying amounts of space available, so I'm pretty sure it isn't directly related to the exact amount leftover (maybe it has to be above a threshold for the problem to occur at all...). Also, 200GB, while a nice even number in decimal form, isn't anything special in two's complement binary.
    I'll assume that you are using the most current version of iTunes (7.0.2 I believe), so this confirms that the problem has not been repaired since I experienced it (7.0). So it is a lingering bug. I did experience the same oddness where I could download podcasts, but it was failing with videos. At the time I assumed it had to do with some arbitrary limit, and that the podcasts were small enough to remain under it. Now, I think it has to do with some state that is stuck in iTunes, and gets reset when something happens with the volume's filesystem.
    Anyway, if following the above linked advice doesn't help in your situation, I'm at a loss for what else to try. I guess rebuilding your library may be worth a try. On a few occasions I've had to run "consolidate library". You could try that (if you are using the option to organize your files). It won't damage any of your settings.
    On your last point, absolutely correct. Sorry about that, but that's my point of view.
    Good luck.
    Chris

  • Cannot delete or drag problematic movie from iTunes...Please Help!

    I converted a movie in iTunes and every time I try to upload it to my iPod iTunes crashes. I have tried everything I can think of to get rid of the converted movie. I have tried using the delete button, deleting it from the menu, dragging it into the trash (all from "movies" and the "playlist"). How can I get rid of the movie? I can't upload anything to my iPod until it's gone.
    Thank you in advance for your learned assistance!
    G4

    Click on the folder in the Finder's sidebar or the title bar with the house icon, and then on Music followed by iTunes and then iTunes Music. In the iTunes music library, look for an item created around the time you converted the movie, and move that item to the desktop. If you can't find it in the iTunes library, open the file iTunes Music Library.xml in a text editor, search this file for the movie's name, and then for the following instance of file://. Following that will be the path to the movie; after locating it, drag it to the desktop.
    (17015)

  • Me edge animate project works when I test, but not when I publish. Please help.

    I feel like this has happened to me in the past, but I just cannot get the thing to work when I post it online. It's just a blank page, all white. I think there might be something in the code of one of the .js files that I need to change.
    ??  I saw something about the phrase 'use strict' but I can't find that code anywhere.
    There must be something I'm forgetting. I put all of the published files up on the server, and I just can't access it. Any help would be seriously appreciated.
    Thanks.

    Can you share the website link so that we can see what the issue is?
    Regards,
    Vivekuma

  • IPod shuffle recognized in windows, but not in iTunes? Anybody please help!

    I need help... my BRAND NEW shuffle (4th gen) will not come up in the devices list... iTunes will not recognize anything is plugged in even though it shows on the H drive in windows....

    Have you checked that Windows has downloaded the driver?

  • Dispatcher running but not connected to message server :(  please help .

    trc file: "dev_disp", trc level: 1, release: "700"
    sysno      00
    sid        DEV
    systemid   562 (PC with Windows NT)
    relno      7000
    patchlevel 0
    patchno    144
    intno      20050900
    make:      multithreaded, Unicode, 64 bit, optimized
    pid        3744
    Mon Oct 26 12:37:38 2009
    kernel runs with dp version 232000(ext=109000) (@(#) DPLIB-INT-VERSION-232000-UC)
    length of sys_adm_ext is 576 bytes
    SWITCH TRC-HIDE on ***
    ***LOG Q00=> DpSapEnvInit, DPStart (00 3744) [dpxxdisp.c   1243]
         shared lib "dw_xml.dll" version 144 successfully loaded
         shared lib "dw_xtc.dll" version 144 successfully loaded
         shared lib "dw_stl.dll" version 144 successfully loaded
         shared lib "dw_gui.dll" version 144 successfully loaded
         shared lib "dw_mdm.dll" version 144 successfully loaded
    rdisp/softcancel_sequence :  -> 0,5,-1
    use internal message server connection to port 3900
    Mon Oct 26 12:37:50 2009
    WARNING => DpNetCheck: NiHostToAddr(www.doesnotexist0211.qqq.nxst) took 12 seconds
    Mon Oct 26 12:38:06 2009
    WARNING => DpNetCheck: NiAddrToHost(1.0.0.0) took 16 seconds
    ***LOG GZZ=> 2 possible network problems detected - check tracefile and adjust the DNS settings [dpxxtool2.c  5371]
    MtxInit: 30000 0 0
    DpSysAdmExtInit: ABAP is active
    DpSysAdmExtInit: VMC (JAVA VM in WP) is not active
    DpIPCInit2: start server >noptqas_DEV_00                          <
    DpShMCreate: sizeof(wp_adm)          25168     (1480)
    DpShMCreate: sizeof(tm_adm)          5652128     (28120)
    DpShMCreate: sizeof(wp_ca_adm)          24000     (80)
    DpShMCreate: sizeof(appc_ca_adm)     8000     (80)
    DpCommTableSize: max/headSize/ftSize/tableSize=500/16/552064/552080
    DpShMCreate: sizeof(comm_adm)          552080     (1088)
    DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0
    DpShMCreate: sizeof(slock_adm)          0     (104)
    DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    DpShMCreate: sizeof(file_adm)          0     (72)
    DpShMCreate: sizeof(vmc_adm)          0     (1864)
    DpShMCreate: sizeof(wall_adm)          (41664/36752/64/192)
    DpShMCreate: sizeof(gw_adm)     48
    DpShMCreate: SHM_DP_ADM_KEY          (addr: 000000000EE70050, size: 6348592)
    DpShMCreate: allocated sys_adm at 000000000EE70050
    DpShMCreate: allocated wp_adm at 000000000EE72150
    DpShMCreate: allocated tm_adm_list at 000000000EE783A0
    DpShMCreate: allocated tm_adm at 000000000EE78400
    DpShMCreate: allocated wp_ca_adm at 000000000F3DC2A0
    DpShMCreate: allocated appc_ca_adm at 000000000F3E2060
    DpShMCreate: allocated comm_adm at 000000000F3E3FA0
    DpShMCreate: system runs without slock table
    DpShMCreate: system runs without file table
    DpShMCreate: allocated vmc_adm_list at 000000000F46AC30
    DpShMCreate: allocated gw_adm at 000000000F46ACB0
    DpShMCreate: system runs without vmc_adm
    DpShMCreate: allocated ca_info at 000000000F46ACE0
    DpShMCreate: allocated wall_adm at 000000000F46ACF0
    MBUF state OFF
    DpCommInitTable: init table for 500 entries
    ThTaskStatus: rdisp/reset_online_during_debug 0
    EmInit: MmSetImplementation( 2 ).
    MM global diagnostic options set: 0
    <ES> client 0 initializing ....
    <ES> InitFreeList
    <ES> block size is 4096 kByte.
    <ES> Info: em/initial_size_MB( 16383MB) not multiple of em/blocksize_KB( 4096KB)
    <ES> Info: em/initial_size_MB rounded up to 16384MB
    Using implementation view
    <EsNT> Using memory model view.
    <EsNT> Memory Reset disabled as NT default
    <ES> 4095 blocks reserved for free list.
    ES initialized.
    rdisp/http_min_wait_dia_wp : 1 -> 1
    ***LOG CPS=> DpLoopInit, ICU ( 3.0 3.0 4.0.1) [dpxxdisp.c   1633]
    Mon Oct 26 12:38:07 2009
    ***LOG Q0K=> DpMsAttach, mscon ( noptqas) [dpxxdisp.c   11822]
    DpStartStopMsg: send start message (myname is >noptqas_DEV_00                          <)
    DpStartStopMsg: start msg sent
    CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.
    CCMS: start to initalize 3.X shared alert area (first segment).
    DpMsgAdmin: Set release to 7000, patchlevel 0
    MBUF state PREPARED
    MBUF component UP
    DpMBufHwIdSet: set Hardware-ID
    ***LOG Q1C=> DpMBufHwIdSet [dpxxmbuf.c   1050]
    DpMsgAdmin: Set patchno for this platform to 144
    Release check o.K.
    Mon Oct 26 12:38:47 2009
    ERROR => DpHdlDeadWp: W0 (pid 276) died [dpxxdisp.c   14532]
    ERROR => DpHdlDeadWp: W1 (pid 5532) died [dpxxdisp.c   14532]
    ERROR => DpHdlDeadWp: W2 (pid 3696) died [dpxxdisp.c   14532]
    ERROR => DpHdlDeadWp: W3 (pid 4928) died [dpxxdisp.c   14532]
    ERROR => DpHdlDeadWp: W4 (pid 6040) died [dpxxdisp.c   14532]
    ERROR => DpHdlDeadWp: W5 (pid 3892) died [dpxxdisp.c   14532]
    ERROR => DpHdlDeadWp: W6 (pid 3860) died [dpxxdisp.c   14532]
    ERROR => DpHdlDeadWp: W7 (pid 4564) died [dpxxdisp.c   14532]
    ERROR => DpHdlDeadWp: W8 (pid 3940) died [dpxxdisp.c   14532]
    ERROR => DpHdlDeadWp: W9 (pid 3288) died [dpxxdisp.c   14532]
    my types changed after wp death/restart 0xbf --> 0xbe
    ERROR => DpHdlDeadWp: W10 (pid 5136) died [dpxxdisp.c   14532]
    my types changed after wp death/restart 0xbe --> 0xbc
    ERROR => DpHdlDeadWp: W11 (pid 5128) died [dpxxdisp.c   14532]
    my types changed after wp death/restart 0xbc --> 0xb8
    ERROR => DpHdlDeadWp: W12 (pid 4452) died [dpxxdisp.c   14532]
    ERROR => DpHdlDeadWp: W13 (pid 4680) died [dpxxdisp.c   14532]
    ERROR => DpHdlDeadWp: W14 (pid 5664) died [dpxxdisp.c   14532]
    my types changed after wp death/restart 0xb8 --> 0xb0
    ERROR => DpHdlDeadWp: W15 (pid 5540) died [dpxxdisp.c   14532]
    my types changed after wp death/restart 0xb0 --> 0xa0
    ERROR => DpHdlDeadWp: W16 (pid 4312) died [dpxxdisp.c   14532]
    my types changed after wp death/restart 0xa0 --> 0x80
    DP_FATAL_ERROR => DpWPCheck: no more work processes
    DISPATCHER EMERGENCY SHUTDOWN ***
    increase tracelevel of WPs
    NiWait: sleep (10000ms) ...
    NiISelect: timeout 10000ms
    NiISelect: maximum fd=309
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Oct 26 12:38:57 2009
    NiISelect: TIMEOUT occured (10000ms)
    dump system status
    Workprocess Table (long)               Mon Oct 26 07:08:57 2009
    ========================
    No Ty. Pid      Status  Cause Start Err Sem CPU    Time  Program          Cl  User         Action                    Table
    0 DIA      276 Ended         no      1   0        0                                                                         
    1 DIA     5532 Ended         no      1   0        0                                                                         
    2 DIA     3696 Ended         no      1   0        0                                                                         
    3 DIA     4928 Ended         no      1   0        0                                                                         
    4 DIA     6040 Ended         no      1   0        0                                                                         
    5 DIA     3892 Ended         no      1   0        0                                                                         
    6 DIA     3860 Ended         no      1   0        0                                                                         
    7 DIA     4564 Ended         no      1   0        0                                                                         
    8 DIA     3940 Ended         no      1   0        0                                                                         
    9 DIA     3288 Ended         no      1   0        0                                                                         
    10 UPD     5136 Ended         no      1   0        0                                                                         
    11 ENQ     5128 Ended         no      1   0        0                                                                         
    12 BTC     4452 Ended         no      1   0        0                                                                         
    13 BTC     4680 Ended         no      1   0        0                                                                         
    14 BTC     5664 Ended         no      1   0        0                                                                         
    15 SPO     5540 Ended         no      1   0        0                                                                         
    16 UP2     4312 Ended         no      1   0        0                                                                         
    Dispatcher Queue Statistics               Mon Oct 26 07:08:57 2009
    ===========================
    SiSelNRemove: removed sock 196 (pos=2)
    SiSelNRemove: removed sock 196
    NiSelIRemove: removed hdl 2
    MBUF state OFF
    AdGetSelfIdentRecord: >                                                                           <
    AdCvtRecToExt: opcode 60 (AD_SELFIDENT), ser 0, ex 0, errno 0
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    blks_in_queue/wp_ca_blk_no/wp_max_no = 1/300/17
    LOCK WP ca_blk 1
    make DISP owner of wp_ca_blk 1
    DpRqPutIntoQueue: put request into queue (reqtype 1, prio LOW, rq_id 15)
    MBUF component DOWN
    NiICloseHandle: shutdown and close hdl 2 / sock 196
    NiBufIClose: clear extension for hdl 2
    MsIDetach: detach MS-system
    cleanup EM
    EsCleanup ....
    EmCleanup() -> 0
    Es2Cleanup: Cleanup ES2
    ***LOG Q05=> DpHalt, DPStop ( 3744) [dpxxdisp.c   10421]
    Good Bye .....
    Thanks in advance
    Shakeel.

    Please check this forums subject.  It is SAP Business One System Administration - dedicate to SAP Business One System only.
    Close your thread and post to a proper forum.  To make other members read your message easily, at least some line breaks are needed in your message.
    Thanks,
    Gordon

  • HT201272 Can you access paid for apps/movies from iTunes on another device if you have not synced? I need to delete movies from my iPad to make space but don't want to forfeit the purchase as have not synced movies to another device yet.

    Can you access paid for apps/movies from iTunes on another device if you have not synced? I purchased movies on my new iPad, but need to delete some off as have no space left. I have not synced the movies I have purchased on my iPad to any other devices as yet and want to know if I can retrieve the movies from iTunes later if I removed them now without syncing first? I do not want to forfeit my purchases.. Please help!

    Welcome to the Apple Community.
    You can re-download content purchased from the iTunes store (availability varies depending on location) using the purchased option from the Quick Links section in the top right corner of the iTunes homepage in your iTunes application on your computer.
    You can re-download content purchased from the iTunes store (availability varies depending on location) using the purchased option which is revealed in the iTunes app on your iOS device by tapping the more button at the bottom of the screen.
    If the problem re-occurs, select the content which is causing a problem and use the 'Report a problem' button in Your Purchase History using your computer.
    Try deleting the problematic book (electing to remove original file if/when prompted) and then re-downloading the file from the iBook store.
    You can re-download content purchased from the iBook store (availability varies depending on location) using the purchased option from the Quick Links section in the top right corner of the iTunes homepage in your iTunes application on your computer.
    You can re-download content purchased from the iBook store (availability varies depending on location) using the purchased option at the bottom of the screen after you tap the store button in the top corner of the iBook app on your iOS device.
    If the problem re-occurs, select the content which is causing a problem and use the 'Report a problem' button in Your Purchase History using your computer.
    You can re-download content purchased from the app store using the purchased option from the Quick Links section in the top right corner of the iTunes homepage in your iTunes application on your computer.
    You can re-download content purchased from the app store using the purchased option which is revealed by tapping the updates option at the bottom of the screen of the App store app on your iOS device.
    If the problem re-occurs, select the content which is causing a problem and use the 'Report a problem' button in Your Purchase History using your computer.

  • Facebook will not boot up on my iPad but works on my iPhone ??  Please help

    MY Facebook app has not been able to boot up on my iPad since Thursday. It works fine on my iPhone but I just get a blank white screen with a blue border across the header. After a few seconds it just goes back to iPad menu. I have deleted an re installed FB app and updated the iPad software but still not joy....please help!!

    What iPad and MacBook do you have (mid 2011 ot later iPad 2 or later?) and what OS or iOS do you have?  Are they all on same network and apple id with homeshare on?

  • My iphone apps shows price in indian rupees but not in dollars. My selected region and address is USA? How can i change it to dollar again

    my iphone apps shows price in indian rupees but not in dollars. My selected region and address is USA? How can i change it to dollar again

    my iphone apps shows price in indian rupees but not in dollars. My selected region and address is USA? How can i change it to dollar again

  • HT204022 I backed my old iphone up to my computer and bought a new iphone.  When i backed my new phone up I now I have an icloud photo (from my computer) album that I want to delete from my phone but I do not have the option.  Please help.

    I backed my old iphone up to my computer and bought a new iphone.  When i backed my new phone up I now I have an icloud photo (from my computer) album that I want to delete from my phone but I do not have the option.  Please help.

    If the album was synced to your phone from your computer, it can only be removed by sycing it off.  To do this, deselect the folder on the Photos tab of your iTunes sync settings and sync.

Maybe you are looking for

  • Using Time Capsule without it being a router

    I Have a Time Capsule connected to my Mac Mini (OS X 10.8.3) by ethernet cable, but not connected to my cable modem. I have an existing wireless network and wish to continue using that. I have the Time Capsule working okay for auto back-ups but every

  • Unable to create text using SAVE_TEXT FM

    Dear Experts, I' m trying to automaticly create a text in Create measurement Document (IK11 in PM) when notification is created . For this in program IMRC0004 on exit i put FM SAVE_TEXT but its not working as it should. BAPI_ALM_NOTIF_CREATE & BAPI_A

  • Upgrade purchased Movies to HD or iTunes Extra

    Two part question: 1) if I have already purchased the standard def version of a movie, can I upgrade that to HD paying only the price difference between the two? 2) if I have already purchased a movie in iTunes, and now that movie has iTunes extra co

  • ITunes on Windows Tablet PC?

    Hello - I am considering buying a used Tablet PC for a home jukebox. Does current iTunes run on Tablet PC - or is there a way to get a version that does? Thanks.

  • Vld 004 error - partition key has less than 2 partitions defined

    HI All, i have created a new table with a partition on one colunm. when i am trying to validate the table in owb, i am getting the vld-904 - partition key has less than two partitions defined error. please help. thank you.