Why my laptop can't detect my Ipad2 which was earlier connected to Iphone 4S?

My laptop was connected to Iphone 4S. Can i still connect to my Ipad2 and transfer the file over?

Turn your phone off and connect your cable to the computer, but not the device just yet. Start up iTunes. Now, hold down the home button on your phone and plug it in to the cable - don't let go of the button until iTunes tells you it's detected a phone in recovery mode. Now you can restore to factory settings.
Unfortunately, the data on your phone is already gone if you're seeing the connect to iTunes logo.

Similar Messages

  • How can I recover a video which was deleted from the iPhone 4?  It was not synced before deletion.

    iPhone 4
    Not synced, deleted a video from the phone.
    Is there a way to recover the video?

    What if it was synced - either to iCloud or iTunes (I'm not sure which one I backed up to) after the video was taken? How do I recover it? I have synced/backed-up my iPhone 4 since the video was deleted from my device. Is it still recoverable? Thanks.

  • Why my itunes can't detect application

    why my itunes can't detect application

    Close your iTunes,
    Go to command Prompt -
    (Win 7/Vista) - START/ALL PROGRAMS/ACCESSORIES, right mouse click "Command Prompt", choose "Run as Administrator".
    (Win XP SP2 & above) - START/ALL PROGRAMS/ACCESSORIES/Command Prompt
    In the "Command Prompt" screen, type in
    netsh winsock reset
    Hit "ENTER" key
    Restart your computer.
    If you do get a prompt after restart windows to remap LSP, just click NO.
    Now launch your iTunes and see if it is working now.
    If you are still having these type of problems after trying the winsock reset, refer to this article to identify which software in your system is inserting LSP:
    iTunes 10.5 for Windows: May see performance issues and blank iTunes Store
    http://support.apple.com/kb/TS4123?viewlocale=en_US

  • Why my Iphone4 don't detect my Ipad2 with bluetooth and opposite

    Why my Iphone4 don't detect my Ipad2 with bluetooth and opposite

    I have the same problem.
    I also need both devices to detect each other because some software like scrabble require the bluetooth connection so play. I am also using Conference and Remote (recommended by Apple!) which are also able to use the bluetooth connectivity

  • How can I detect that there is an internet connection?

    How can I detect that there is an internet connection?
    Peter Goossens

    How can I detect that there is an internet connection?
    Peter Goossens
    Peter,
    You might want to experiment with this. It's not perfect, but...
    Class
    Imports System.IO
    Imports System.Net
    Namespace InternetConnection
    Public Class SiteInfo
    Private _displayName As String
    Private _connectionString As String
    Private Sub New(ByVal name As String, _
    ByVal connectionString As String)
    _displayName = name.Trim
    _connectionString = connectionString.Trim
    End Sub
    ''' <summary>
    ''' Gets the connection string of this instance.
    ''' </summary>
    ''' <value></value>
    ''' <returns></returns>
    ''' <remarks></remarks>
    Public ReadOnly Property ConnectionString() As String
    Get
    Return _connectionString
    End Get
    End Property
    ''' <summary>
    ''' Gets the display name of this instance.
    ''' </summary>
    ''' <value></value>
    ''' <returns></returns>
    ''' <remarks></remarks>
    Public ReadOnly Property DisplayName() As String
    Get
    Return _displayName
    End Get
    End Property
    ''' <summary>
    ''' A method which will add a new site to your collection of SiteInfo.
    ''' </summary>
    ''' <param name="siList">Your generic List(Of SiteInfo).</param>
    ''' <param name="displayName">The display name for this new instance
    ''' of SiteInfo.</param>
    ''' <param name="connectionString">The connection string for this
    ''' new instance of SiteInfo.</param>
    ''' <remarks></remarks>
    Public Shared Sub AddNew(ByRef siList As List(Of SiteInfo), _
    ByVal displayName As String, _
    ByVal connectionString As String)
    Try
    If siList Is Nothing Then
    Throw New NullReferenceException("The collection of SiteInfo cannot be null.")
    ElseIf String.IsNullOrEmpty(displayName) OrElse displayName.Trim = "" Then
    Throw New ArgumentException("The display name cannot be null or empty.")
    ElseIf String.IsNullOrEmpty(connectionString) OrElse connectionString.Trim = "" Then
    Throw New ArgumentException("The connection string cannot be null or empty.")
    Else
    If siList.Count > 0 Then
    Dim findDuplicate As IEnumerable(Of SiteInfo) = _
    From si As SiteInfo In siList _
    Where si.DisplayName.ToLower.Replace(" "c, "") = _
    displayName.ToLower.Replace(" "c, "") AndAlso _
    si.ConnectionString.ToLower.Replace(" "c, "") = _
    connectionString.ToLower.Replace(" "c, "")
    If findDuplicate.Count <> 0 Then
    Throw New ArgumentException("This is a duplicate entry.")
    Else
    siList.Add(New SiteInfo(displayName, connectionString))
    End If
    Else
    siList.Add(New SiteInfo(displayName, connectionString))
    End If
    End If
    Catch ex As Exception
    Throw
    End Try
    End Sub
    ''' <summary>
    ''' A method which will return a boolean value to indicate internet
    ''' connection status.
    ''' </summary>
    ''' <param name="siList">Your generic List(Of SiteInfo).</param>
    ''' <param name="displayName">The display name for the instance
    ''' of SiteInfo to use.</param>
    ''' <returns></returns>
    ''' <remarks></remarks>
    Public Shared Function InternetIsConnected(ByVal siList As List(Of SiteInfo), _
    ByVal displayName As String) As Boolean
    Dim retVal As Boolean = False
    Try
    If siList Is Nothing Then
    Throw New NullReferenceException("The collection of SiteInfo cannot be null.")
    ElseIf siList.Count = 0 Then
    Throw New ArgumentOutOfRangeException("Count", "The collection of SiteInfo cannot be empty.")
    ElseIf String.IsNullOrEmpty(displayName) OrElse displayName.Trim = "" Then
    Throw New ArgumentException("The display name cannot be null or empty.")
    Else
    Dim findInstance As IEnumerable(Of SiteInfo) = _
    From si As SiteInfo In siList _
    Where si.DisplayName.ToLower.Replace(" "c, "") = _
    displayName.ToLower.Replace(" "c, "")
    If findInstance.Count <> 1 Then
    Throw New ArgumentException("This instance is not in the collection of SiteInfo.")
    Else
    retVal = TestConnection(findInstance.First.ConnectionString)
    End If
    End If
    Catch ex As Exception
    Throw
    End Try
    Return retVal
    End Function
    Private Shared Function TestConnection(ByVal url As String) As Boolean
    Dim retVal As Boolean = False
    Try
    Dim request As WebRequest = WebRequest.Create(url)
    Using response As HttpWebResponse = DirectCast(request.GetResponse, HttpWebResponse)
    Using dataStream As Stream = response.GetResponseStream
    Using reader As New StreamReader(dataStream)
    Dim responseFromServer As String = reader.ReadToEnd()
    retVal = True
    End Using
    End Using
    End Using
    Catch ex As WebException
    retVal = True
    Catch ex As Exception
    retVal = False
    End Try
    Return retVal
    End Function
    End Class
    End Namespace
    Example Usage
    Public Class Form1
    Private Sub Form1_Load(ByVal sender As System.Object, _
    ByVal e As System.EventArgs) _
    Handles MyBase.Load
    Dim siList As New List(Of InternetConnection.SiteInfo)
    InternetConnection.SiteInfo.AddNew(siList, _
    "Test1", _
    "http://dev.virtualearth.net/REST/v1/Locations/37221?o=xml")
    InternetConnection.SiteInfo.AddNew(siList, _
    "Test2", _
    "nothing here")
    InternetConnection.SiteInfo.AddNew(siList, "Test3", _
    "www.google.com")
    InternetConnection.SiteInfo.AddNew(siList, "Test4", _
    "http://fls-online.com")
    ' This will return true:
    Dim bool1 As Boolean = _
    InternetConnection.SiteInfo.InternetIsConnected(siList, _
    "Test1")
    ' This will return false:
    Dim bool2 As Boolean = _
    InternetConnection.SiteInfo.InternetIsConnected(siList, _
    "Test2")
    ' This will return false:
    Dim bool3 As Boolean = _
    InternetConnection.SiteInfo.InternetIsConnected(siList, _
    "Test3")
    ' This will return true:
    Dim bool4 As Boolean = _
    InternetConnection.SiteInfo.InternetIsConnected(siList, _
    "Test4")
    Stop
    End Sub
    End Class
    Let me know your results please?
    Still lost in code, just at a little higher level.

  • How can i tell if CellSpy pro was installed onto my iPhone S4?

    How can i tell if CellSpy pro was installed onto my iPhone S4 without my knowledge?

    Correct. Someone would need access to the phone and know your iTunes password to install an App. Do your mystery phone-calls seem to be the same as in the link below?
    http://www.callercenter.com/487-121-9722.html

  • HT1766 How can I retreive a video that was deleted from my iphone??

    How can I retreive a video that was deleted from my iphone??

    If it was a video taken on your iPad, and if you have it backed up from the last time you did an iTunes (or iCloud) backup, then yes, you can restore your iPad using that backup.

  • Why ipad iphoto can't detect picture exif data?

    Hi
    I want to ask, why iphoto in ipad can't detect exif data of my picture?
    But while using the same picture in another aplication photogene for ipad, it can detect the exif data?
    Thank you
    Kindo

    Thank you criticacid12,
    I would like if i can get the original size of all my edited photos :-) do you?
    I can get the  non edited original size by plugging the camera to computer with the faster speed 2x or 3x or maybe 4x than sending it from itunes.)
    I have make a request from feedback, let us all make feed back request all others fiture that we want :-)
    You can send feedback to Apple here
    http://www.apple.com/feedback/iphoto_ios.html
    Thank you

  • My Laptop Can't Detect Linksys -_-

    I can't seem to get my labtop to connect to the the internet. I tried multi time and It just can't detect anything. it was working fine until i reseted the router and installed the new Firmwire. its working with ethernet and works with wireless ps3. just not my labtop for some odd reason. I can't detect the connection . If anyway know the answer plz tell me. I have WRT54GS v.5  router   and currently using windows XP.

    The laptop might be having a wireless switch(wifi button), you will need to turn it on so that it can detect wireless networks.

  • HT1386 My laptop can't detect my iphone! However, it is able to charge and all!

    Help! I can't detect my iphone with my laptop even though it is able to charge!

    I followed the instructions and i realized that
    the Apple Mobile Device USB Driver is not listed!
    I followed the steps as shown but I just can't find this anywhere. Is it possible to install it again? i've already uninstalled and reinstall my itunes, restart my iphone and laptop!!

  • My iPhone 3S will not allow me to upgrade. I can't download any apps and when I connected my iPhone to iTunes and tried to upgrade it, it said it was already updated. On top of that, WiFi does not work with my iPhone. What do I do to fix this?

    My dad got this iPhone for me a few months ago as a gift since I had a really awful phone before.  The only thing is, I can't seem to upgrade it to the latest software without it telling me it's already updated to iOS 4 or something like that.  (I would be able to give you the exact iOS version, but ever since connecting my iPhone to iTunes, my phone isn't responding so I can't check the settings or anything.)  I can't download any apps (I get an error message saying the software on my phone is too old) and so I pretty much am extremely limited to what I can do on this phone.  I'm very frustrated at this point and incredibly displeased with Apple's products.
    If someone could please explain to me why this is happening and what I can do to fix it, I'd be extremely grateful.
    Thanks.

    What iPhone do you have? You can check in settings>>general>> about.
    If you have a 3G you cannot update beyond iOS 4.2.1. The 3G is over 4 years old an was discontinued over 2 1/2 years ago. You need the latest ios to run the latest versions of some apps. If you have a 3GS you can update.
    If your phone is not responding, reset it by pressing and holding down both the home button ad lock/ sleep button simultaneously until the Apple logo appears.

  • Can't find the bean which was just created??

    Hi all.
    I am completely stuck at this problem. I'll try to explain it as briefly as possible. (Btw I use Weblogic 8.1 and Oracle 10g DB).
    I create an entity bean (it has a String as a primary key). It has some relationships, everything is set up nicely. Upon creation I put the Id in a JMS message, the message in a JMS queue and finish the method.
    From the MDB that gets this message I do findByPrimaryKey(id) and it complains it cannot find my bean. Why? I can see it in the database. Also if I send to the MDB an ID from a bean that was created earlier, it works. It just can't find the bean that was just created, as if it wasn't "commited".
    What could be the cause of this? Is there an easy way to explain/solve it?
    I appreciate any kind of help. Thanks in advance. Cheers!

    Does the database insertion and the JMS publish occur in the same XA
    transaction? It sounds like the JMS commit happens (sometimes) quick
    enough that the other resource (the database) has not finished commit
    processing yet. So you don't find your key.
    -- Rob
    Baba Baba wrote:
    Hi all.
    I am completely stuck at this problem. I'll try to explain it as briefly as possible. (Btw I use Weblogic 8.1 and Oracle 10g DB).
    I create an entity bean (it has a String as a primary key). It has some relationships, everything is set up nicely. Upon creation I put the Id in a JMS message, the message in a JMS queue and finish the method.
    From the MDB that gets this message I do findByPrimaryKey(id) and it complains it cannot find my bean. Why? I can see it in the database. Also if I send to the MDB an ID from a bean that was created earlier, it works. It just can't find the bean that was just created, as if it wasn't "commited".
    What could be the cause of this? Is there an easy way to explain/solve it?
    I appreciate any kind of help. Thanks in advance. Cheers!

  • Why don't I see the Info tab in iTunes, after connecting my iPhone to my Mac?

    How can i find the "Info" tab in iTunes when I connect my iPhone to my apple pro to sync?

    Great, but how do I sync my non-Apple email accounts?
    Punch them in manually?? It used to be so simple, tick a box = email accounts set up automatically

  • Can i stop iphoto launching every time i connect my iPhone?

    Hi,
    Is there anyway i can stop iPhoto launching when i connect my iPhone to my Mac?
    It's driving me nuts!
    I don't use it for images and have no need for iphoto to launch.
    Many thanks.

    Solved, thanks!
    The image capture solution works best because i still want iPhoto to launch when i connect my camera.

  • Sockets: How can server detect that client is no longer connected?

    Hi,
    I really need help and advice with the following problem:
    I have a Client - Server socket program.
    The server listens on port 30000 using a server socket on one machine
    The client connects to localhost on port 20000, previously creating an ssh port forward connection using the Jsch package from www.jcraft.com with
    "session.setPortForwardingL(20000, addr, 30000);"
    Then the client sends Strings to the server using a PrintWriter.
    Both are connected to each other through the internet and the server uses a dynamic dns service.
    This all works well until the IP address of the Server changes, The client successfully reconnects to the server using the dynamic dns domain name, but the server keeps listening on the old socket from the previous connection, while opening a new one for the new client connection. The server doesn't seem to notice that Client has disconnected because of this IP address change.
    looks like the server is stuck inside the while loop. If i cut the connection manually on the client side, the server seems to notice that the client has disconnected, and jumps out of the while look (see code below)
    this is the code I'm using for the server:
    import java.io.BufferedReader;
    import java.io.IOException;
    import java.io.InputStreamReader;
    import java.net.Socket;
    import java.util.logging.Logger ;
    public class SocketHandler extends Thread {
        static Logger logger = Logger.getLogger("Server.SocketHandler");
        private Socket clientSocket = null;
        private BufferedReader in = null;
        private InputStreamReader inReader = null;
        public SocketHandler(Socket clientSocket) throws IOException {
            this.clientSocket = clientSocket;
            inReader = new InputStreamReader(clientSocket.getInputStream ());
            in = new BufferedReader(inReader);
        public void run() {
            try {
                String clientMessage = null;
                while ((clientMessage = in.readLine()) != null) {
                    logger.info("client says: " + clientMessage);
            } catch (IOException e) {
                logger.severe(e.getMessage());
                e.printStackTrace();
            } finally {
                try {
                    logger.info("closing client Socket: " + clientSocket);
                    clientSocket.close();
                    in.close();
                    ServerRunner.list.remove(clientSocket);
                    logger.info("currently "+ServerRunner.list.size()+" clients connected");
                } catch (IOException e) {
                    logger.severe (e.getMessage());
                    e.printStackTrace();
    }I've tried making the server create some artificial traffing by writing some byte every few seconds into the clients OutputStream. However I get no exceptions when the IP address changes. The server doesn't detect a disconnected socket connection.
    I'd really appreciate help and advice

    If a TCP/IP peer is shut down "uncleanly", the other end of the connection doesn't get the final end of connection packet, and read() will wait forever. close() sends the final packet, as will killing the peer process (the OS does the close()). But if the OS crashes or for some other reason can't send the final packet, the server never gets notification that the peer has gone away.
    Like you say, one way is timeout, if the protocol is such that there always is something coming in at regular intervals.
    The other way is a heartbeat. Write something to the other end periodically, just some kind of "hello, I'm here, ignore this message". The other end doesn't even have to answer. If the peer has gone away, TCP will retransmit your heartbeat message a few times. After about a minute it will give up, and mark the socket as broken. read() will then throw an IOException. You could send heartbeats from the client too, so that the client detects if the server computer dies.
    TCP/IP also has a TCP-level heartbeat; see Socket.setKeepAlive(). The heartbeat interval is about two hours, so it takes it a while to detect broken connections.

Maybe you are looking for

  • The update operation is not allowed in the current state of the request

    When users have logged a request through the service manager 2012 portal and they go back in to add user input they sometimes receive a message that says " The update operation is not allowed in the current state of the request." The state of the req

  • Translation for a search help

    Dear experts: My origenal system is Italian system, when I log in with Chinese system and open a search help for a screen field, the pop up screen of the search help can not show the correct characters. So my question is what I should do to show the

  • Multitable Insert in OWB

    Hi, How can I create a mapping in OWB 11.2 for Multitable Insert? Thank you. -bzx

  • I'm thinking about buying the new Macbook but I have a few questions.

    Alright, so I've never owned any kind of Mac computer, ever. I'm seriously thinking about switching to Mac, and buying the new Aluminum Macbook. I'm going to start school in the fall of 09 for Music Production. I know that Mac's are good for Video ed

  • Color of visited links in new web styling

    Hola, Thanks to the web crew for all the hard work on the new arch website look. Just wanted to suggest that maybe a color for the previously visited links (a:visited I think) could be chosen that wasn't so close to the plain text color. Once a link