Failed to connect Error - Need Help, Please

I installed , created the simple "Hello" program and it ran fine on the simulator.
Then, I click the run OTA and now I'm in deep yogurt!
I get the message:
*** Error ***
Failed to connect to device 0!
Reason:
Emulator 0 terminated while waiting for it to register!
BUILD SUCCESSFUL (total time: 4 seconds)
I just want to restore things to what they were before I selected Run OTA. I've been reading for the past 3 hours and haven't found out to restore. I even deleted and re-installed but, still get the same meassge (probably some saved java pref file...). Anyway, HOW TO RESTORE to a virgin setup????
Thanks

... I read somewhere I need to reboot - I did and it took care of it.

Similar Messages

  • Database Connection Error - Need Help

    I have a Crystal Reports report that "stopped working".  When I preview the report, I receive a Database Connection error.  I have a copy of the error posted at http://www.foreigncandy.com/crystalreportserror.jpg.
    Anyone have any ideas what's causing this?  We are new to SAP and Crystal Reports.
    Thanks
    Jeff Verdoorn - Systems Analyst
    The Foreign Candy Company, Inc.

    I'm not sure what database version you are looking for.  it's Crystal Reports 2008 version 12.
    Could it be a a problem with the setup of an item?
    Here's the SQL query:
    -- Create temporary table variable
    DECLARE @LineQuantities TABLE
         DocEntry int,
         DocDate datetime,
         ItemCode varchar(20),
         Quantity numeric(19,6),
         Last4WeekSales numeric(19,6),
         Last12WeekSales numeric(19,6),
         Week1Sales numeric(19,6),
         Week2Sales numeric(19,6),
         Week3Sales numeric(19,6),
         Week4Sales numeric(19,6),
         Week5Sales numeric(19,6),
         Week6Sales numeric(19,6),
         Week7Sales numeric(19,6),
         Week8Sales numeric(19,6),
         Week9Sales numeric(19,6),
         Week10Sales numeric(19,6),
         Week11Sales numeric(19,6),
         Week12Sales numeric(19,6)
    -- Fill table with list of invoice items and the week they were sold
    INSERT INTO @LineQuantities (DocEntry,DocDate,ItemCode,Quantity,Last4WeekSales, Last12WeekSales,
         Week1Sales,Week2Sales,Week3Sales,Week4Sales,Week5Sales,Week6Sales,Week7Sales,Week8Sales,Week9Sales,Week10Sales,
         Week11Sales,Week12Sales)
    SELECT invHead.DocEntry, invHead.DocDate, invLine.ItemCode, invLine.Quantity,
         CASE
              WHEN invHead.DocDate > DateAdd(Week,-4,GetDate()) AND invHead.DocDate <= DateAdd(Week,-0,GetDate()) THEN invLine.Quantity
              ELSE 0
         END AS 'Last Week 4 Sales',
         CASE
              WHEN invHead.DocDate > DateAdd(Week,-12,GetDate()) AND invHead.DocDate <= DateAdd(Week,-0,GetDate()) THEN invLine.Quantity
              ELSE 0
         END AS 'Last Week 12 Sales',
         CASE
              WHEN invHead.DocDate > DateAdd(Week,-12,GetDate()) AND invHead.DocDate <= DateAdd(Week,-11,GetDate()) THEN invLine.Quantity
              ELSE 0
         END AS 'Week -12 Sales',
         CASE
              WHEN invHead.DocDate > DateAdd(Week,-11,GetDate()) AND invHead.DocDate <= DateAdd(Week,-10,GetDate()) THEN invLine.Quantity
              ELSE 0
         END AS 'Week -11 Sales',
         CASE
              WHEN invHead.DocDate > DateAdd(Week,-10,GetDate()) AND invHead.DocDate <= DateAdd(Week,-9,GetDate()) THEN invLine.Quantity
              ELSE 0
         END AS 'Week -10 Sales',
         CASE
              WHEN invHead.DocDate > DateAdd(Week,-9,GetDate()) AND invHead.DocDate <= DateAdd(Week,-8,GetDate()) THEN invLine.Quantity
              ELSE 0
         END AS 'Week -9 Sales',
         CASE
              WHEN invHead.DocDate > DateAdd(Week,-8,GetDate()) AND invHead.DocDate <= DateAdd(Week,-7,GetDate()) THEN invLine.Quantity
              ELSE 0
         END AS 'Week -8 Sales',
         CASE
              WHEN invHead.DocDate > DateAdd(Week,-7,GetDate()) AND invHead.DocDate <= DateAdd(Week,-6,GetDate()) THEN invLine.Quantity
              ELSE 0
         END AS 'Week -7 Sales',
         CASE
              WHEN invHead.DocDate > DateAdd(Week,-6,GetDate()) AND invHead.DocDate <= DateAdd(Week,-5,GetDate()) THEN invLine.Quantity
              ELSE 0
         END AS 'Week -6 Sales',
         CASE
              WHEN invHead.DocDate > DateAdd(Week,-5,GetDate()) AND invHead.DocDate <= DateAdd(Week,-4,GetDate()) THEN invLine.Quantity
              ELSE 0
         END AS 'Week -5 Sales',
              CASE
              WHEN invHead.DocDate > DateAdd(Week,-4,GetDate()) AND invHead.DocDate <= DateAdd(Week,-3,GetDate()) THEN invLine.Quantity
              ELSE 0
         END AS 'Week -4 Sales',
         CASE
              WHEN invHead.DocDate > DateAdd(Week,-3,GetDate()) AND invHead.DocDate <= DateAdd(Week,-2,GetDate()) THEN invLine.Quantity
              ELSE 0
         END AS 'Week -3 Sales',
         CASE
              WHEN invHead.DocDate > DateAdd(Week,-2,GetDate()) AND invHead.DocDate <= DateAdd(Week,-1,GetDate()) THEN invLine.Quantity
              ELSE 0
         END AS 'Week -2 Sales',
         CASE
              WHEN invHead.DocDate > DateAdd(Week,-1,GetDate()) AND invHead.DocDate <= DateAdd(Week,-0,GetDate()) THEN invLine.Quantity
              ELSE 0
         END AS 'Week -1 Sales'
    FROM OINV AS invHead
         LEFT JOIN INV1 AS invLine ON invLine.DocEntry = invHead.DocEntry
    -- Create summary report from temporary table
    SELECT itm.ItemCode AS 'Item No.', itm.ItemName AS 'Item Description', itm.OnHand AS 'In Stock',
         itm.IsCommited AS 'Qty Ordered by Customers', itm.OnOrder AS 'Qty Ordered from Vendors', itm.LeadTime AS 'Lead Time',     
         CASE
              WHEN (Sum(sales.Last4WeekSales)/4) > Sum(sales.Last12WeekSales)/12 THEN Convert(int,(itm.OnHand/(Sum(sales.Last4WeekSales)/4)))
              ELSE  Convert(int,(itm.OnHand/(Sum(sales.Last12WeekSales)/12)))
         END AS 'Weeks of In Stock',
         Convert(numeric(8,2),(Sum(sales.Last4WeekSales)/4)) AS '4 Week Sales Average', Convert(numeric(8,2),(Sum(sales.Last12WeekSales)/12)) AS '12 Week Sales Average',
         Convert(varchar(10),Convert(numeric(8,2),(100*((Sum(sales.Last4WeekSales)/4) - (Sum(sales.Last12WeekSales)/12)) / (Sum(sales.Last12WeekSales)/12)))) + ' %' AS 'Percent Change',
         Convert(int,Sum(sales.Week1Sales)) AS 'Week -12 Sales', Convert(int,Sum(sales.Week2Sales)) AS 'Week -11 Sales', Convert(int,Sum(sales.Week3Sales)) AS 'Week -10 Sales',
         Convert(int,Sum(sales.Week4Sales)) AS 'Week -9 Sales', Convert(int,Sum(sales.Week5Sales)) AS 'Week -8 Sales', Convert(int,Sum(sales.Week6Sales)) AS 'Week -7 Sales',
         Convert(int,Sum(sales.Week7Sales)) AS 'Week -6 Sales', Convert(int,Sum(sales.Week8Sales)) AS 'Week -5 Sales', Convert(int,Sum(sales.Week9Sales)) AS 'Week -4 Sales',
         Convert(int,Sum(sales.Week10Sales)) AS 'Week -3 Sales', Convert(int,Sum(sales.Week11Sales)) AS 'Week -2 Sales', Convert(int,Sum(sales.Week12Sales)) AS 'Week -1 Sales'
    FROM @LineQuantities AS sales
         LEFT JOIN OITM AS itm ON itm.ItemCode = sales.ItemCode
    WHERE sales.Quantity > 0
    GROUP BY itm.ItemCode, itm.ItemName, itm.OnHand, itm.IsCommited, itm.OnOrder, itm.LeadTime
    ORDER BY itm.ItemCode
    Thanks
    Jeff

  • Connection error-need help

    I am getting the following when I go to one of my email accounts:
    Connection error
    the following error has prevented a successful connectionL unable to connect to imap.vzw.net (read timed out)
    and then it gives me the settings/retry part.
    What Can I do to get this working

    There are several threads on this forum about recent issues with people syncing their e-mail on various phones/e-mail services (mostly Yahoo and AOL):
    https://community.verizonwireless.com/message/920801#920801
    https://community.verizonwireless.com/thread/790390
    https://community.verizonwireless.com/thread/790925

  • Connection Error - NEED HELP BAD.

    I keep getting this error message. What is the problem and can't anyone explain it in plain terms of what I need to do? What exactly is the problem? I keep reading replies to others' posts about this issue and I can't make heads or tails of what I'm supposed to do. I am not a Mac Tech. I speak English and don't understand all the tech stuff! That's why I own a Mac!
    Please someone help.... This is so frustrating.
    Date/Time: 2006-09-28 21:53:41.354 -0700
    OS Version: 10.4.7 (Build 8J135)
    Report Version: 4
    iChat Connection Log:
    AVChat started with ID 4071322886.
    [email protected]: State change from AVChatNoState to AVChatStateWaiting.
    0x4f46f00: State change from AVChatNoState to AVChatStateInvited.
    0x4f46f00: State change from AVChatStateInvited to AVChatStateConnecting.
    [email protected]: State change from AVChatStateWaiting to AVChatStateConnecting.
    [email protected]: State change from AVChatStateConnecting to AVChatStateEnded.
    Chat ended with error -8
    0x4f46f00: State change from AVChatStateConnecting to AVChatStateEnded.
    Chat ended with error -8
    Video Conference Error Report:
    2.113599 @:0 type=4 (00000000/2)
    [VCSIP_INVITEERROR]
    [19]
    2.113461 @SIP/SIP.c:2437 type=4 (900A0015/2)
    [SIPConnectIPPort failed]
    Video Conference Support Report:
    1.613373 @SIP/Transport.c:1218 type=1 (00000000/0)
    [INVITE sip:[email protected] SIP/2.0
    Via: SIP/2.0/UDP m.0:2032;branch=z9hG4bK643c3fe24fa4f58c
    Max-Forwards: 70
    To: "u0" <sip:[email protected]>
    From: "[email protected]" <sip:[email protected]>;tag=1463042804
    Call-ID: 6e5b56ba-4f76-11db-9b55-a94ab9a513c4@lip
    CSeq: 1 INVITE
    Contact: <sip:[email protected]:2032>;isfocus
    User-Agent: Viceroy 1.2
    Content-Type: application/sdp
    Content-Length: 515
    v=0
    o=alysonraeder 0 0 IN IP4 m.0
    [email protected]
    c=IN IP4 m.0
    b=AS:2147483647
    t=0 0
    a=hwi:1296:1:2100
    a=bandwidthDetection:YES
    a=iChatEncryption:YES
    m=audio 2035 RTP/AVP 12 3 0
    a=rtcp:2036
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:1082000650
    m=video 2033 RTP/AVP 126 34
    a=rtcp:2034
    a=rtpmap:126 X-H264
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:20
    a=RTCP:AUDIO 2036 VIDEO 2034
    a=pogo
    a=fmtp:126 imagesize 0 rules 20:352:288:352:288
    a=rtpID:-806649442
    0.612997 @SIP/Transport.c:1218 type=1 (00000000/0)
    [INVITE sip:[email protected] SIP/2.0
    Via: SIP/2.0/UDP m.0:2032;branch=z9hG4bK643c3fe24fa4f58c
    Max-Forwards: 70
    To: "u0" <sip:[email protected]>
    From: "[email protected]" <sip:[email protected]>;tag=1463042804
    Call-ID: 6e5b56ba-4f76-11db-9b55-a94ab9a513c4@lip
    CSeq: 1 INVITE
    Contact: <sip:[email protected]:2032>;isfocus
    User-Agent: Viceroy 1.2
    Content-Type: application/sdp
    Content-Length: 515
    v=0
    o=alysonraeder 0 0 IN IP4 m.0
    [email protected]
    c=IN IP4 m.0
    b=AS:2147483647
    t=0 0
    a=hwi:1296:1:2100
    a=bandwidthDetection:YES
    a=iChatEncryption:YES
    m=audio 2035 RTP/AVP 12 3 0
    a=rtcp:2036
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:1082000650
    m=video 2033 RTP/AVP 126 34
    a=rtcp:2034
    a=rtpmap:126 X-H264
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:20
    a=RTCP:AUDIO 2036 VIDEO 2034
    a=pogo
    a=fmtp:126 imagesize 0 rules 20:352:288:352:288
    a=rtpID:-806649442
    0.112691 @SIP/Transport.c:1218 type=1 (00000000/0)
    [INVITE sip:[email protected] SIP/2.0
    Via: SIP/2.0/UDP m.0:2032;branch=z9hG4bK643c3fe24fa4f58c
    Max-Forwards: 70
    To: "u0" <sip:[email protected]>
    From: "[email protected]" <sip:[email protected]>;tag=1463042804
    Call-ID: 6e5b56ba-4f76-11db-9b55-a94ab9a513c4@lip
    CSeq: 1 INVITE
    Contact: <sip:[email protected]:2032>;isfocus
    User-Agent: Viceroy 1.2
    Content-Type: application/sdp
    Content-Length: 515
    v=0
    o=alysonraeder 0 0 IN IP4 m.0
    [email protected]
    c=IN IP4 m.0
    b=AS:2147483647
    t=0 0
    a=hwi:1296:1:2100
    a=bandwidthDetection:YES
    a=iChatEncryption:YES
    m=audio 2035 RTP/AVP 12 3 0
    a=rtcp:2036
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:1082000650
    m=video 2033 RTP/AVP 126 34
    a=rtcp:2034
    a=rtpmap:126 X-H264
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:20
    a=RTCP:AUDIO 2036 VIDEO 2034
    a=pogo
    a=fmtp:126 imagesize 0 rules 20:352:288:352:288
    a=rtpID:-806649442
    0.000000 @:0 type=2 (00000000/22)
    [VCVIDEO_OUTGOINGATTEMPT]
    [4]
    Video Conference User Report:
    Binary Images Description for "iChat":
    0x1000 - 0x170fff com.apple.iChat 3.1.5 (436) /Applications/iChat.app/Contents/MacOS/iChat
    0x4463000 - 0x446dfff com.apple.IOFWDVComponents 1.7.9 /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0x44d2000 - 0x4511fff com.apple.QuickTimeFireWireDV.component 7.1.3 /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x451c000 - 0x454efff com.apple.QuickTimeIIDCDigitizer 7.1.3 /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/Quick TimeIIDCDigitizer
    0x4558000 - 0x45a1fff com.apple.QuickTimeUSBVDCDigitizer 1.4.0 /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/Qui ckTimeUSBVDCDigitizer
    0x45c8000 - 0x46d7fff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x4706000 - 0x47f6fff com.apple.ATIRadeon9700GLDriver 1.4.18 (4.1.8) /System/Library/Extensions/ATIRadeon9700GLDriver.bundle/Contents/MacOS/ATIRadeo n9700GLDriver
    0x4804000 - 0x481dfff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLDriver.bundl e/GLDriver
    0x4823000 - 0x483efff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x4880000 - 0x488cfff com.apple.audio.AudioIPCPlugIn 1.0.1 /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x490a000 - 0x490bfff com.apple.aoa.halplugin 2.5.6 (2.5.6b5) /System/Library/Extensions/IOAudioFamily.kext/Contents/PlugIns/AOAHALPlugin.bun dle/Contents/MacOS/AOAHALPlugin
    0x4adb000 - 0x4b14fff com.apple.audio.SoundManager.Components 3.9.1 /System/Library/Components/SoundManagerComponents.component/Contents/MacOS/Soun dManagerComponents
    0x569c000 - 0x56a0fff com.apple.iokit.IOQTComponents 1.4 /System/Library/Components/IOQTComponents.component/Contents/MacOS/IOQTComponen ts
    0x8fe00000 - 0x8fe52fff dyld /usr/lib/dyld
    0x90000000 - 0x901bbfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90213000 - 0x90218fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9021a000 - 0x90267fff com.apple.CoreText 1.0.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90292000 - 0x90343fff com.apple.ApplicationServices.ATS 1.9.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90372000 - 0x9072cfff com.apple.CoreGraphics 1.258.33 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x907b9000 - 0x90892fff com.apple.CoreFoundation 6.4.6 (368.27) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x908db000 - 0x908dbfff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x908dd000 - 0x909dffff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a39000 - 0x90abdfff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90ae7000 - 0x90b57fff com.apple.framework.IOKit 1.4.1 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b6d000 - 0x90b7ffff libauto.dylib /usr/lib/libauto.dylib
    0x90b86000 - 0x90e5dfff com.apple.CoreServices.CarbonCore 681.4 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90ec3000 - 0x90f43fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f8d000 - 0x90fcefff com.apple.CFNetwork 129.16 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90fe3000 - 0x90ffbfff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x9100b000 - 0x9108cfff com.apple.SearchKit 1.0.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x910d2000 - 0x910fbfff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9110c000 - 0x9111afff libz.1.dylib /usr/lib/libz.1.dylib
    0x9111d000 - 0x912d7fff com.apple.security 4.4 (27566) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913d5000 - 0x913defff com.apple.DiskArbitration 2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913e5000 - 0x9140dfff com.apple.SystemConfiguration 1.8.3 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91420000 - 0x9142bfff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x91430000 - 0x91438fff libbsm.dylib /usr/lib/libbsm.dylib
    0x9143c000 - 0x914b7fff com.apple.audio.CoreAudio 3.0.4 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914f4000 - 0x914f4fff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914f6000 - 0x9152efff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91549000 - 0x91616fff com.apple.ColorSync 4.4.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9166b000 - 0x916fcfff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x91743000 - 0x917fafff com.apple.QD 3.10.20 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91837000 - 0x91895fff com.apple.HIServices 1.5.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918c4000 - 0x918e5fff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x918f9000 - 0x9191efff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x91931000 - 0x91973fff com.apple.LaunchServices 181 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x9198f000 - 0x919a3fff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x919b1000 - 0x919f1fff com.apple.ImageIO.framework 1.4.8 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91a07000 - 0x91acffff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91b1d000 - 0x91b32fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91b37000 - 0x91b54fff com.apple.ImageIO.framework 1.4.8 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b59000 - 0x91bc8fff com.apple.ImageIO.framework 1.4.8 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91bdf000 - 0x91be3fff com.apple.ImageIO.framework 1.4.8 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91be5000 - 0x91c2dfff com.apple.ImageIO.framework 1.4.8 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91c32000 - 0x91c6ffff com.apple.ImageIO.framework 1.4.8 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91c76000 - 0x91c8ffff com.apple.ImageIO.framework 1.4.8 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91c94000 - 0x91c97fff com.apple.ImageIO.framework 1.4.8 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91c99000 - 0x91c99fff com.apple.Accelerate 1.2.2 (Accelerate 1.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91c9b000 - 0x91d80fff com.apple.vImage 2.4 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91d88000 - 0x91da7fff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91e13000 - 0x91e81fff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91e8c000 - 0x91f21fff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91f3b000 - 0x924c3fff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x924f6000 - 0x92821fff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92851000 - 0x928d9fff com.apple.DesktopServices 1.3.4 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x9291a000 - 0x92b45fff com.apple.Foundation 6.4.6 (567.27) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92c63000 - 0x92d41fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x92d61000 - 0x92e4ffff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92e61000 - 0x92e7ffff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92e8a000 - 0x92ee4fff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92f02000 - 0x92f02fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92f04000 - 0x92f18fff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92f30000 - 0x92f40fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92f4c000 - 0x92f61fff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92f73000 - 0x92ffafff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x9300e000 - 0x93019fff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x93023000 - 0x93050fff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9306a000 - 0x93079fff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x93085000 - 0x930ebfff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x9311c000 - 0x9316bfff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x93199000 - 0x931b6fff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x931c8000 - 0x931d5fff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x931de000 - 0x934ebfff com.apple.HIToolbox 1.4.8 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x9363a000 - 0x93646fff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x9364b000 - 0x9366bfff com.apple.DirectoryService.Framework 3.1 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x936be000 - 0x936befff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x936c0000 - 0x93cf3fff com.apple.AppKit 6.4.7 (824.41) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94080000 - 0x940f0fff com.apple.CoreData 80 /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x94129000 - 0x941ecfff com.apple.audio.toolbox.AudioToolbox 1.4.3 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9423e000 - 0x9423efff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94240000 - 0x943f3fff com.apple.QuartzCore 1.4.8 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94446000 - 0x94483fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x9448b000 - 0x944dbfff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x9451b000 - 0x9455ffff com.apple.bom 8.5 (86.3) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x9456b000 - 0x945a3fff com.apple.vmutils 4.0.0 (85) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x945e6000 - 0x94602fff com.apple.securityfoundation 2.2 (27710) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x94616000 - 0x9465afff com.apple.securityinterface 2.2 (27692) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x9467e000 - 0x9468dfff com.apple.CoreGraphics 1.258.33 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x94695000 - 0x946a2fff com.apple.CoreGraphics 1.258.33 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x946e8000 - 0x94701fff com.apple.CoreGraphics 1.258.33 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94708000 - 0x949d7fff com.apple.QuickTime 7.1.3 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94a9a000 - 0x94b0bfff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x94b7e000 - 0x94b9ffff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x94ca7000 - 0x94dd7fff com.apple.AddressBook.framework 4.0.4 (485.1) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94e69000 - 0x94e78fff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94e80000 - 0x94eadfff com.apple.LDAPFramework 1.4.1 (69.0.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x94eb4000 - 0x94ec4fff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x94ec8000 - 0x94ef7fff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x94f07000 - 0x94f24fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x95273000 - 0x952e1fff com.apple.Bluetooth 1.7.5 (1.7.5f10) /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x95644000 - 0x956d2fff com.apple.WebKit 418.8 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x9572e000 - 0x957c4fff com.apple.JavaScriptCore 418.3 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    0x95801000 - 0x95b0dfff com.apple.WebCore 418.20.1 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x95c96000 - 0x95cbffff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x96eb6000 - 0x96ed5fff com.apple.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x97546000 - 0x9756bfff com.apple.speech.LatentSemanticMappingFramework 2.2 /System/Library/PrivateFrameworks/LatentSemanticMapping.framework/Versions/A/La tentSemanticMapping
    0x975ec000 - 0x976adfff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x976d8000 - 0x976d9fff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLSystem.dy lib
    0x976db000 - 0x976e8fff com.apple.agl 2.5.6 (AGL-2.5.6) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x97847000 - 0x97848fff com.apple.MonitorPanelFramework 1.1.1 /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x9806c000 - 0x98193fff com.apple.viceroy.framework 273.5 /System/Library/PrivateFrameworks/VideoConference.framework/Versions/A/VideoCon ference
    0x98937000 - 0x9893afff com.apple.DisplayServicesFW 1.8.1 /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x98b83000 - 0x9953afff com.apple.QuickTimeComponents.component 7.1.3 /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x99f7d000 - 0x99f88fff com.apple.IMFramework 3.1.1 (427) /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x99f93000 - 0x9a0ecfff com.apple.MessageFramework 2.1 (752.2) /System/Library/Frameworks/Message.framework/Versions/B/Message

    I'm having the same problems with mine. I have a powerbook g4- 10.4.7. I bought my isight so that i could talk to my girlfriend who goes to school in washington. She has a Macbook. I can easily talk to everyone else but her. Amazing I know. Just my luck. Can anyone help me with this? I'm connected to my schools internet system and i can chat with people in washington also but not her. I also cant talk to my friend who goes to my school and is also on the same network as me. I am using an ethernet cable or i can connect to wireless. We are known to have a T1 internet. Please help me.

  • Scholar92 - Strange error Need help please

    Lecori Salutem
    The program I have a problem with is supposed to extract info from a DB. It extracts the info perfectly but I cannot access the info with my get commands from other classes.
    When i fire the program it says " [Ljava.lang.String;@1ba34f2 ". Can anyone help me to solve this problem please.
    ////////CODE STARTS HERE
    import java.sql.*;
    import javax.swing.*;
    /** Description:
    *  Die program word gebruik om al die metadata en paths wat getabuleer is
    *  op die Music DB te access en te stoor.
    *  @author Benni( [email protected])
    public class SQLImport
        private Connection connSQL;
            int tel = 2; // ID in SQL tabel begin by "2"
            String [] tName = new String [100];
    String [] tArtist = new String [100];
    String [] tGenre = new String [100];
    String [] tMood = new String [100];
    String [] tPath = new String [100];
    String [] tJavaPath = new String [100];
    String [] tID = new String [100];
    String [] tTime = new String [100];
    public SQLImport( )
    try
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    connSQL = DriverManager.getConnection("jdbc:odbc:DRIVER={Microsoft Access Driver (*.mdb)};DBQ=Music.mdb");
    JOptionPane.showMessageDialog(null, "Connection Successfully Established", "Notification",JOptionPane.INFORMATION_MESSAGE);
    catch (Exception sqlConnectionFailed)
    JOptionPane.showMessageDialog(null, sqlConnectionFailed, "ERROR:",JOptionPane.ERROR_MESSAGE);
    Statement statement = null;
    try
    statement = connSQL.createStatement( );
    catch (SQLException statementERROR)
    JOptionPane.showMessageDialog(null,statementERROR, "ERROR:",JOptionPane.ERROR_MESSAGE);
    char optionChoice;
    do
    optionChoice = getMenuChoice();
    if(optionChoice == 'A')
    try
    String querySQL = "SELECT * FROM tbl_ListedMusic ORDER BY ID ;";
    System.out.println(querySQL);
    ResultSet resultSet = statement.executeQuery(querySQL);
    while (resultSet.next( ))
    tID[tel] = resultSet.getString("ID");
    tName[tel] = resultSet.getString("TrackName");
    tArtist[tel] = resultSet.getString("TrackArtist");
    tTime[tel] = resultSet.getString("TrackTime");
    tGenre[tel] = resultSet.getString("TrackGenre");
    tMood[tel] = resultSet.getString("TrackMood");
    tJavaPath[tel] = resultSet.getString("TrackJavaPath");
    tPath[tel] = resultSet.getString("TrackPath");
    tel++;
    catch (SQLException infoImportError)
    JOptionPane.showMessageDialog(null,infoImportError, "ERROR:",JOptionPane.ERROR_MESSAGE);
    while (optionChoice != 'X');
    //NB! Strings are " " chars are ' '
    public String[ ] gettID( )
    return tID;
    public String[ ] gettName( )
    return tName;
    public char getMenuChoice( )
    String menu = "A) Import .mp3 info \n X) Exit";
    char choice = JOptionPane.showInputDialog(menu).toUpperCase( ).charAt(0);
    return choice;
    public static void main (String [ ] args)
    SQLImport sql = new SQLImport( );
    String [ ] blah = new String [10];
    blah = sql.gettID();
    System.out.println(blah);
    //Code ENDS
    How do I resolve the " [Ljava.lang.String;@1ba34f2   "  ? Much apreciated
    Regards,
    Bennu                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    This forum is about the Messaging Server email server and related products. I think you have posted this question in the wrong forum.

  • Web photo album error - need help please

    I am using the newer version, which is Web Phot Album 2.1. It
    used to work fine, i installed the new update for dreamweaver and
    now it doesn't work. When i did update dreamweaver, I did what it
    said and disabled the exentions. So, to the problem. When I click
    on the open files button to choose which pictures i want, it gives
    me this error :
    ' A script in file C:\Program Files\Macromedia\Dreamweaver
    MX\Configuration\Shared\Common\Scripts\dwscripts.js has been
    running for a long time. Do you want to continue?'
    so after i click yes, it will build the images using flash,
    but it will not create any of the html or any of the html pages.
    please let me know if anyone has any other ideas?????

    In addition to the missing correlation between the
    amsSettings table and at least one of the other tables per Ken's
    suggestion (which will give you a Cartesian join if unresolved),
    you should either remove the double quotes from the
    #SESSION.auth.NewLinesNo# parameter if it is numeric, or use single
    quotes if it is a text field ('#SESSION.auth.NewLinesNo#')
    Phil

  • My download fails at 42% i need help please

    my download keeps failing at 42% can anyone help

    you mean your installation fails at 42%?
    if so, check your task manager (win) or activity monitor (mac) for a hanging adobe process (esp an adobe help install).  terminate the process and installation should proceed.

  • After many months of non-use, when I opened Photoshop CS4 Extended, I got an error message 148.3.  "Licensing for this product has stopped working."  I need help, please.

    After many months of non-use, when I tried to open Photoshop CS4 Extended, I got an error message 148.3.  "Licensing for this product has stopped working."  I need help, please.

    Error "Licensing has stopped working" | Windows
    Error "Licensing has stopped working" | Mac OS
    Mylenium

  • HT201413 I need help please!!!!! My iPhone 4 s won't charge!!!!! I get error message 21. How can I get around this.

    I need help please I keep getting error messega 21 when i try uploading my iPhone 4 s!!!!!!!!! omg some one please tell me if and how to fix this please. thank you!!!

    Hopefully this link will help you: http://support.apple.com/kb/HT2109

  • Hello, I have a problem on my iPhone every second turn on and off I mean it shows the apple and off and again shows the apple icon and off and tried to Restore and it hangs on my iPhone and then waits Error 3004 Please I need help please!

    Hello, I have a problem on my iPhone every second turn on and off I mean it shows the apple and off and again shows the apple icon and off and tried to Restore and it hangs on my iPhone and then waits Error 3004 Please I need help please!

    Resolve communication issues
    Related errors: 17, 1004, 1013, 1638, 3014, 3194, 3000, 3002, 3004, 3013, 3014, 3015, 3194, or 3200.
    These alerts refer to gs.apple.com, say "There was a problem downloading the software," or say the "device isn't eligible for the requested build."
    I would guess your iphone has been hacked ( jailbroken ) ring any bells ?

  • HT1350 my kids entered the wrong unlock code on my ipod too many times and now the screen says ipod disabled connect to itunes. Well i try connecting to itunes and i cant because my ipod is locked! need help please!

    my kids enetered the wrong unlock code on my ipod touch too many times and now the screen says IPOD DISABLED connect to itunes. I have tried connecting it to itunes and I cant because the ipod is locked. need help please! any ideas? Thanks, Nick

    Place the iOS device in Recovery Mode and then connect to your computer and restore via iTunes. The iPod will be erased.
    iOS: Wrong passcode results in red disabled screen                          
    If recovery mode does not work try DFU mode.                         
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings

  • Hi i need help please i been playing clash of clans over 13 months. And today o realise what someone using my game Centra. Someone playing on my game Clash of Clans. I been change my Apple ID password, email, but doesn't work. Then I playing game I can se

    Hi i need help please i been playing clash of clans over 13 months. And today o realise what someone using my game Centra. Someone playing on my game Clash of Clans. I been change my Apple ID password, email, but doesn't work. When I playing game I can see what someone else trying connecting to my game And I don't know what to do.So if you can help me please? I don't wanna lose my game. 

    Hello Vaidas Vaidas,
    It sounds like you are noticing someone else is accessing your Clash of Clans data by playing the game and you have tried to reset your Apple ID password. If you are following the steps outlined in this article:
    Apple ID: Changing your password
    http://support.apple.com/kb/ht5624
    What is preventing you from changing your password? Any error messages or prompts?
    Thank you for using Apple Support Communities.
    All the best,
    Sterling

  • Adobe update process fails due to Error 130200. solutions please

    adobe update process fails due to Error 130200. solutions please.  Shyam

    Is there anything else beside the number 130200?
    Try downloading the update from http://www.adobe.com/downloads/updates/
    If you still need help, please tell us your operating system details.

  • HT1212 My Ipad is disabled by wrong password and I have tried to reset and restore a few times with no success. Now I-tunes won't even recognize the I-pad in recovery mode. I need help please.

    My Ipad is disabled by wrong password and I have tried to reset and restore a few times with no success. Now I-tunes won't even recognize the I-pad in recovery mode. I need help please.

    If the iPad was running iOS 7,  iCloud: Find My iPhone Activation Lock in iOS 7
    http://support.apple.com/kb/HT5818
    How can I unlock my iPad if I forgot the passcode?
    http://www.everymac.com/systems/apple/ipad/ipad-troubleshooting-repair-faq/ipad- how-to-unlock-open-forgot-code-passcode-password-login.html
    iOS: Device disabled after entering wrong passcode
    http://support.apple.com/kb/ht1212
    How can I unlock my iPad if I forgot the passcode?
    http://tinyurl.com/7ndy8tb
    How to Reset a Forgotten Password for an iOS Device
    http://www.wikihow.com/Reset-a-Forgotten-Password-for-an-iOS-Device
    Using iPhone/iPad Recovery Mode
    http://ipod.about.com/od/iphonetroubleshooting/a/Iphone-Recovery-Mode.htm
    Saw this solution on another post about an iPad in a school environment. Might work on your iPad so you won't lose everything.
    ~~~~~~~~~~~~~
    ‘iPad is disabled’ fix without resetting using iTunes
    Today I met my match with an iPad that had a passcode entered too many times, resulting in it displaying the message ‘iPad is disabled – Connect to iTunes’. This was a student iPad and since they use Notability for most of their work there was a chance that her files were not all backed up to the cloud. I really wanted to just re-activate the iPad instead of totally resetting it back to our default image.
    I reached out to my PLN on Twitter and had some help from a few people through retweets and a couple of clarification tweets. I love that so many are willing to help out so quickly. Through this I also learned that I look like Lt. Riker from Star Trek (thanks @FillineMachine).
    Through some trial and error (and a little sheer luck), I was able to reactivate the iPad without loosing any data. Note, this will only work on the computer it last synced with. Here’s how:
    1. Configurator is useless in reactivating a locked iPad. You will only be able to completely reformat the iPad using Configurator. If that’s ok with you, go for it – otherwise don’t waste your time trying to figure it out.
    2. Open iTunes with the iPad disconnected.
    3. Connect the iPad to the computer and wait for it to show up in the devices section in iTunes.
    4. Click on the iPad name when it appears and you will be given the option to restore a backup or setup as a new iPad (since it is locked).
    5. Click ‘Setup as new iPad’ and then click restore.
    6. The iPad will start backing up before it does the full restore and sync. CANCEL THE BACKUP IMMEDIATELY. You do this by clicking the small x in the status window in iTunes.
    7. When the backup cancels, it immediately starts syncing – cancel this as well using the same small x in the iTunes status window.
    8. The first stage in the restore process unlocks the iPad, you are basically just cancelling out the restore process as soon as it reactivates the iPad.
    If done correctly, you will experience no data loss and the result will be a reactivated iPad. I have now tried this with about 5 iPads that were locked identically by students and each time it worked like a charm.
    ~~~~~~~~~~~~~
    Try it and good luck. You have nothing more to lose if it doesn't work for you.
     Cheers, Tom

  • Bought a new macbook and want to manually manage music onto my iphone 4s but when i click 'manually manage' and then 'apply' i get the message saying it will erase everything already on there. Need help please!

    Bought a new macbook and want to manually manage music onto my iphone 4s (as it is already full of music from old windows laptop) but when i click 'manually manage' and then 'apply' i get the message saying it will erase everything already on there. Need help please!

    Before you sync your iPhone make sure that all the music that was synced to your phonereviously has been copied to your iTunes on the new MacBook Pro. Then when you connect your phone you will be able to either sync all music or select only those playlists that you want on the phone.

Maybe you are looking for

  • Using a BLOB data type in a CMP Entity Bean??

    Hi all, i am trying to store blob type data using entity bean, The corresponding field in the Entity bean is defined with data type byte[ ] , and i'm getting error while creating entity bean, could anyone please help me! This is the error: [6/7/06 11

  • How to print in PDF Form

    Hi all May I know how to print Shipper's Letter of Instruction (SLI) (Foreign Trade) form in PDF format? User should be able to select 'FUSI" as output type when they print Billing Ext Trans (VF02/VF03). Must be in PDF format. What programme can I re

  • O.T. Worth Bookmarking For The Long Winter Nights

    Plugs 'N Pixels provides information about creativity and productivity software and related educational materials,together with a free e-zine full of tips and tutorials. Access to the entire site is free with no registration required. http://www.plug

  • PC Suite with virtualized Windows NOT working

    PC Suite (6.83.14.1) is not working with a vitualized OS, i tested it with Linux (Ununtu) 7.10 as Host OS VirtualBox 1.5.6 with USB support Guest (virtualized) OS tried: Windows 2000, XP Sp2/3 and Vista sp1 The phone (nokia N73) connected bij USB is

  • Photoshop CC shuts down dual apple displays randomly

    I'm facing an odd situation that I've only ever witnessed since upgrading to CC. While working on some simple compositing (nothing strenuous, basically just merging a couple jpegs into a some web friendly documents for a clients) I've had the signal