Multi Screen Set-up with laptop shut

I have 2 Acer 20" LED monitors and I want to have these 2 monitors be my primary and secondary monitors with my laptop closed.
Is there a program that I can use to make this happen?
Is there any sort of apple dock or third party adapter I can purchase to accomplish this?

Hi Jon,
http://www.matrox.com/graphics/en/products/gxm/mac/ best I know of.
Regards
Stefan

Similar Messages

  • Multi screen set up

    Lets say i want 2 or even 3 external screens link to my laptop ... How am i supposed to link all this in terms of wires/ conections ?

    Depends which model you have.  Newer Macbook Pros have HDMI outputs as well as thunderbolt outputs.  You can use those plus thunderbolt daisychains.  Additionally you can get a thunderbolt hub that has multiple video outputs to allow the use multiple monitors.  Like LowLuster said just google it.

  • Logging takes in the field for multi-camera set-up with OL

    Is there any way to designate separate cameras or link shots (to be labeled as CamA or CamB) to advance takes and make notes simultaneously?
    OL doesn't really seem set up to use with documentary style shooting with multiple cameras, but maybe there is some way around this?
    I just want to be able to add takes in OL to multiple cameras without a lot of typing between each take...and add notes that are applicable to multiple cameras within one shot and one take.
    Any ideas?

    OnLocation CS5 has an entirely new feature set known as the File-Based Workflow that may be just what you are looking for. The basic steps are as follows:
    PRE-PRODUCTION (IDEALLY)
    1) Create a placeholder for one camera angle of a given scene/shot. (Consider using Adobe Story to prepare your script. Then you can hand the script off to OL and have it automatically broken down into scene-level placeholders. You will then still need to break those placeholders down to the shot level)
    2) Use the Camera Name property to designate the camera for that shot. If you use the "auto-matching" process, which you will likely want to do if you're entering notes per take, then this data point will be used to automatically mate a set of clips from, say Camera A to the correct set of placeholders.
    3) Fill in any other metadata that is common to other camera angles.
    4) Duplicate the placeholder for other camera angles & shots of the scene. To do this, you can use either the Duplicate Placeholder command or, to create multiple duplcates, the Break Out Scene command, both of which are available in the context menu when you right-click a row in the shot list. Note that both commands work with multiple rows selected.
    5) Customize each duplicate as appropriate.
    6) Repeat for your other shots.
    DURING THE SHOOT
    1) [Strongly recommended] For multi-cam shoots, synchronize the date/time on all the cameras. Ideally, synch them all to the date/time on the computer running OnLocation. This greatly simplifies the auto-matching process by saving you the hassle of repeatedly changing the camera date/time in OnLocation.
    2) Select placeholder(s) or clip(s) for the next shot.
    3) At any time between starting and stopping recording of the take, click the Timestamp button (upper left corner of the Project/Shot List panel). This step applies a timestamp to the placeholder, which makes it possible for the auto-matching mechanism to determine which clip belongs with which placeholder.
    4) Optional: Add temporal comment markers to timestamped placeholders, which will be aligned to the clip when you auto-match. (Note that PPRO does not recognize comment markers added in OnLocation.)
    5) Repeat steps 1-3 for subsequent shots
    AFTER TRANFERRING CLIPS TO THE COMPUTER
    1) In the Media Browser panel, navigate to the folder where you copied the content.
    2) Select the clips.
    3) Click the Auto-Match button at the top of the panel. This opens the Auto-Match dialog.
    4) if this is a multi-camera shoot, check the appropriate box and select the name of the camera that this content came from. The list for the Camera Name setting is populated from what you entered in the Camera Name field for all timestamped placeholders. [Be alert for unintended variants. For example, if you entered "Camera A" for some shots and "Cam A" for others, you'll see both versions in the list. Before proceeding, you should standardize the entries.]
    5) Set the Camera Date/Time. If you synched the cameras' date & time to the computer's, then this step is not necessary (unless you previously set a Camera Date/Time offset in OL, in which case you will need to reset the Date/Time to match the computer's.)
    6) Click OK to proceed with auto-matching. OnLocation will proceed to find the placeholder whose timestamp fits within the Start and Stop Recording times of one of the clips and, if relevant, whose Camera Name matches your selection. All metadata from that placeholder will be merged into the clip.
    [Please note that all of the foregoing is from memory--I don't have OL CS5 installed on this home computer--so I may have gotten the names of some of the controls wrong. I'm pretty confident that the basic workflow is sound, however.]
    Here's the help page for this feature. I'm afraid it's does not really cover the particulars for a multi-camera workflow. http://help.adobe.com/en_US/onlocation/cs/using/WS89e4fde9608114f41e5eb2de124b454ea2b-8000 .html
    As for entering the same string in the Comment field (or any other metadata property) for multiple placeholders or clips simultaneously, simply select whichever rows in the Shot List that you want to edit, then in the Metadata panel edit whichever properties you choose to. Your changes will be applied to all selected rows (assuming they're editable--i.e., not read-only or offline, both of which apply only to clips, not to placeholders)

  • Speed issue when getting bounds of single monitor in multi-screen display

    I've written the following code which should get the bounds of the first monitor in a n-view (multi-screen) set up so I can size JFrame objects relative to the dimensions of this first monitor. However, this bit of code seems to slow done my constructor by a significant amount of time (ie my program now takes 5 seconds to load as opposed to loading almost instaneously). Is there anything I can do to get this information more quickly? And why does this code take so long to execute?
    GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
    GraphicsDevice[] gs =  ge.getScreenDevices();
    GraphicsDevice gd = gs[0];
    GraphicsConfiguration[] gc = gd.getConfigurations();
    Rectangle virtualBounds = new Rectangle(gc[0].getBounds());      Thanks in advance,
    -jake

    I was curious (having never delt with this stuff before about your problem so I put your code into a simple frame and ran it. Sure enough it took on average 2.7s to determine the bounds information and less than a tenth of a secondto setup the GUI. So I added code to print out the timmings of each call in your code and found that almost all of it was in "gd.getConfigurations()". This method says it returns all of the GraphicsConfiguration objects for the device. That could be a lot of objects (on my system it returns 8).
    When I switched to calling getDefaultConfiguration I get the same answer and it comes back in 0 milliseconds making the GUI setup the slowest part:-)
    I am not sure if getDefaultConfiguration is what you want. It is unclear to me that the first element in the configurations array represents the current mode of the device and it is unclear if the detault is the current mode either. I guess you can experiment and see if the default is the configuration you want or not.
    good luck,
    IL
    I attached my code so you can see what I did:/*
    * Created on Jul 12, 2003
    * Created by Leslie Software (<a href="mailto:[email protected]">[email protected]</a>)
    * Copyright 2003 Leslie Software
    package forum.multiplemonitors;
    import javax.swing.*;
    import java.awt.*;
    * @author ileslie Leslie Software (<a href="mailto:[email protected]">[email protected]</a>)
    public class MultipleMonitorsFrame extends JFrame {
         public static void main(String[] args) {
              MultipleMonitorsFrame frame = new MultipleMonitorsFrame ();
              frame.setVisible (true);
         public MultipleMonitorsFrame ()  {
              super ("Monitor Query Timing");
              setDefaultCloseOperation (JFrame.EXIT_ON_CLOSE);
              long timeBeforeMonitorQuery = System.currentTimeMillis ();
              //  Get the information on the first monitor
              GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
              GraphicsDevice[] gs =  ge.getScreenDevices();
    //          System.out.println ("After getScreenDevices\t " + System.currentTimeMillis ());
              GraphicsDevice gd = gs[0];
              //  Origonally retrieving all configurations and looking at the first
    //          GraphicsConfiguration[] gc = gd.getConfigurations();
    //          System.out.println ("After getConfigurations\t " + System.currentTimeMillis ());
    //          Rectangle virtualBounds = new Rectangle(gc[0].getBounds());
              //  Now just asking for the default          
              GraphicsConfiguration defaultgc = gd.getDefaultConfiguration();
              Rectangle virtualBounds = new Rectangle (defaultgc.getBounds());
              long timeAfterMonitorQuery = System.currentTimeMillis ();
              long monitorQueryTime = timeAfterMonitorQuery - timeBeforeMonitorQuery;
              long timeBeforeGUISetup = System.currentTimeMillis ();
              //  Setup the GUI
              //  Report on timing (including dummy string for gui setup
              JLabel monitorTimeLabel = new JLabel ("Finding out about the monitor took " + monitorQueryTime + " milliseconds");
              JLabel guiSetupTimeLabel = new JLabel ("X");
              //  Report on monitor dimentions          
              JPanel monitorInfoPanel = new JPanel ();
              JLabel monitorInfoTitle = new JLabel ("First monitor size is:");
              JTextField monitorWidth = new JTextField ("" + virtualBounds.width);
              monitorWidth.setEditable(false);
              JLabel monitorInfoBy = new JLabel ("by");
              JTextField monitorHeight = new JTextField ("" + virtualBounds.height);
              monitorHeight.setEditable(false);
              monitorInfoPanel.add (monitorInfoTitle);
              monitorInfoPanel.add (monitorInfoTitle);
              monitorInfoPanel.add (monitorWidth);
              monitorInfoPanel.add (monitorInfoBy);
              monitorInfoPanel.add (monitorHeight);
              getContentPane ().add (monitorTimeLabel, BorderLayout.NORTH);
              getContentPane ().add (monitorInfoPanel, BorderLayout.CENTER);
              getContentPane ().add (guiSetupTimeLabel, BorderLayout.SOUTH);
              pack ();
              long timeAfterGUISetup = System.currentTimeMillis ();
              long guiSetupTime = timeAfterGUISetup - timeBeforeGUISetup;
              //  This is technicly wrong since we should not be accessing a realized GUI component
              //  outside of the event thread but it works and this is just a test app     
              guiSetupTimeLabel.setText ("Setting up the GUI took about " + guiSetupTime + " milliseconds");
    }

  • Satellite P505 S8950 laptop shutting down with bluescreen error message

    Hi ,
    I bought Toshiba Satellite P505-S8950 model 4 months ago.
    I notice my laptop shuts down intermitently while straming videos especiaaly in 'full screen' mode and while using skype with video chat.
    My laptop is still under warranty and I have not created any back up since I bought.Now,
    Because system is unstable so doing back up now may not be useful.
    After every restart I have meesage 'computer has recovered from unexpected shutdown' and upon allowing Windows to find solution nothing comes up.
    copy +paste of one of error log-
    ***Problem signature:***
    ***Problem Event Name: BlueScreen***
    ***OS Version: 6.1.7600.2.0.0.768.3***
    ***Locale ID: 3081***
    ***Additional information about the problem:***
    ***BCCode: 109***
    ***BCP1: A3A039D8965D960F***
    ***BCP2: B3B7465EE8DA6805***
    ***BCP3: FFFFF80002C9595C***
    ***BCP4: 0000000000000001***
    ***OS Version: 6_1_7600***
    ***Service Pack: 0_0** *Product: 768_1**
    I am running windows 7 home edition premium with 64 bit and RAM test after every restart is good so far.
    Please can anybody help to the system stable and help my experience while browsing more enjoyable?
    Thanks.

    I have European Satellite P500 almost 2 months now and use it with original preinstalled Win7 home premium 64bit. I use it daily for work and some multimedia activities. I also use Skype almost daily.
    Until now I didnt notice any similar problem.
    It is not easy to discuss about such problems because none of us know how you have configured preinstalled OS, which applications do you use and if there is some software conflict that can be responsible for this.
    Have you installed something that can be responsible for this behaviour?
    To be honest I cannot imagine you have had this problem from the first day. Maybe you should install recovery image again using HDD recovery option.
    I dont know what kind of back-up do you mean but what you can do is to start recovery DVD creation.

  • HT1553 I did the back up as instructed... Installed a larger hard drive and followed the restore instructions... Now I get a white screen with a folder icon and blinking question mark. When trying to set startup with new drive I get a bless tool error...

    I did the back up as instructed... Installed a larger hard drive and followed the restore instructions... Now I get a white screen with a folder icon and blinking question mark. When trying to set startup with new drive I get a bless tool error... Help!!

    If you have installed a new hard drive , you will need to have formatted it in Disk Utility correctly. This may explain your problem.
    Boot  into your 10.6 Install disk again at the top menubar > Utilities > select Disk utility and in there select your new hard drive, and select the tab Erase and choose to make the format as  Mac OS Extended Journaled. When that is finished look in the main window to make sure that the partition map scheme says GUID Partition Table.
    Now go to the Restore tab and reinstall from your backup.

  • Just downloaded and installed new LR CC.  No apparent problems with the D/I on my iMac, OS 10.10.3. however LR CC will not start.  I get a momentary flash of the opening screen and then the program  shuts down.   From the posts it looks like this if a ver

    Just downloaded and installed new LR CC.  No apparent problems with the D/I on my iMac, OS 10.10.3. however LR CC will not start.  I get a momentary flash of the opening screen and then the program  shuts down.   From the posts it looks like this if a very common problem.  Any help would be appreciated. Thanks.

    Have you tried logging out of your CC desktop app, then logging back in again? Quit/Restart won't work, but logging out and back in should. See here: https://helpx.adobe.com/creative-cloud/kb/sign-in-out-creative-cloud-desktop-app.html

  • I need to update my iTunes and iPod touch,iPad and iPhone but they were set up with a hp laptop that i sold i tried to update my iTunes and apple devices but it tell's me if i update i will lose all media on my devices and to update with the original com

    I need to update my iTunes and iPod touch,iPad and iPhone but they were set up with a hp laptop that i sold i tried to update my iTunes and apple devices but it tell's me if i update i will lose all media on my devices and to update with the original computr

    Go to www.ecamm.com and d/l PhoneView.
    To prevent a sync when plugging in the iPod/iPhone - hold down the 'option' and the 'command' keys when plugging in the iPod/iPhone - key the keys down until the iPod/iPhone is listed under the Devices list in iTunes - this will prevent a sync from taking place.
    With PhoneView you can take the content from the device to the iTunes library.
    MJ

  • Laptop Lenovo G550 with win7 shuts down(crash) randomly

    Laptop shuts down
    My daughter has a new Lenovo G550 laptop.The machine shuts off randomly after boot. I installed on it windows 7 and 5 month everything works fine. I updated all the drivers and also i updated the bios. Laptop keeps shuting down...My daughter says when she plays games or when are too many windows open in internet explorer and torrent open the computer shuts down. She finds out  that , when the proccesor is very much in usage( 90-100% ), laptop shuts off. The temperature seems not so high, i don't see any dirt in fan...Also in safe mode it seems that things go normaly. I get a kernel-power error : "The system has rebooted without cleanly down first.This error could be caused if the system stopped responding , crashed or lost power unexpectedly". Also i've installed again OS(windows 7) but the problem keep going on. Should i install another OS, like windows XP ? Or should i install again windows 7 cleanly ( with format the hard disk) and see what it happens? If it is OK i start to update, one by one, drivers and after this shall i try to install some applications(one by one to see if any of it can cause problems) ? Any opinion or help please ! Thank you !
    Solved!
    Go to Solution.

    I have the same problem except my lenovo is 3 weeks old!  I think it is a software error but I have no idea which software is causing the problem.  It is always a booting error that happens when my desk top is already open.  I have called the support line three times and I am honestly thinking about getting a mac if this keeps happening.  Why can't I use normal software like i-tunes, spotify, microsoft, adobe, and my new external hard-drive without having this problem?  It can't be a hardware problem on such a new computer, right? 

  • While finalizing I get the blue screen and my laptop shuts down?  HELP!

    I pasted the diagnostic thing below but dont understand why I keep getting that blue screen and my computer to shut down on me. I have tried a couple of different brands of c.d.'s and can't figure it out. The computer is 2-3 months old I dont get it. Please help!
    Microsoft Windows XP Professional Service Pack 2 (Build 2600)
    Sony Corporation VGN-FJ290P
    iTunes 6.0.4.2
    CD Driver 2.0.4.3
    CD Driver DLL 2.0.3.2
    LowerFilters: dvd43llh (3.5.0.0), PxHelp20 (2.0.0.0),
    UpperFilters: GEARAspiWDM (2.0.4.3),
    Video Driver: Mobile Intel(R) 915GM/GMS,910GML Express Chipset Family\Intel(R) 915GM/GMS,910GML Express Chipset
    FlashMedia\MSorMSProDevice, Bus Type SSA
    IDE\DiskHTS541010G9SA00_______________________MBZOC60D, Bus Type ATA, Bus Address [0,0]
    IDE\CdRomPIONEERDVD-RW__DVR-K16D________________1.00___, Bus Type ATA, Bus Address [0,0]
    If you have multiple drives on the same IDE or SCSI bus, these drives may interfere with each other.
    Some computers need an update to the ATA or IDE bus driver, or Intel chipset. If iTunes has problems recognizing CDs or hanging or crashing while importing or burning CDs, check the support site for the manufacturer of your computer or motherboard.
    Current user is administrator.
    E: PIONEER DVD-RW DVR-K16D, Rev 1.00
    Audio CD in drive.
    Found 19 songs on CD, playing time 76:13 on Audio CD.
    Track 1, start time 00:02:00
    Track 2, start time 04:01:65
    Track 3, start time 08:02:08
    Track 4, start time 11:43:11
    Track 5, start time 15:43:55
    Track 6, start time 22:23:05
    Track 7, start time 25:45:55
    Track 8, start time 29:38:08
    Track 9, start time 33:28:34
    Track 10, start time 37:56:60
    Track 11, start time 42:25:28
    Track 12, start time 45:26:27
    Track 13, start time 49:08:66
    Track 14, start time 54:05:27
    Track 15, start time 57:58:62
    Track 16, start time 60:52:58
    Track 17, start time 64:56:31
    Track 18, start time 68:26:42
    Track 19, start time 73:01:53
    Audio CD reading succeeded.
    Get drive speed succeeded.
    The drive CDR speeds are: 4 10 16 20 24.
    The drive CDRW speeds are: 4.
    The drive DVDR speeds are: 4 10 16 20 24 0.
    The drive DVDRW speeds are: 4 10 16 20 24 0.
    The last failed audio CD burn had error code -128(0xffffff80). It happened on drive E: PIONEER DVD-RW DVR-K16D on -128(0xffffff80) media at speed 0X.

    I recently purchased Norton stuff and loaded it but dont know how to do all that stuff you said to do.
    okay.
    was that Norton Internet Security 2006? if so, right-click on the yellow ticky-Norton thing down in your task bar, and select "Norton Protection Center". click the LiveUpdate button. install everything it says is available at LiveUpdate. restart the PC if it asks you to.
    open Norton Protection Center again. click on "Norton AntiVirus". click on "Scans". click on "Run full system scan".
    once that's finished, and you've dealt to everything that shows up, do a spyware scan. if you don't have an antispyware program, download and install the free trial version of Ewido, and scan your PC with that.
    ewido anti-malware download
    once that's finished, and you've dealt to anything that shows up, go to the Symantec website (they make your Norton), and run one of their online virus scans. they take an eternity, so you may want to do that overnight:
    Symantec Security Check
    to do a disk cleanup, go "start > all programs > accessories > system tools > disk cleanup"
    to run chkdsk (that's a disk checking/repair utility in Windows), close all active programs, go into My Computer, right-click on your hard drive, select "properties", click on the "tools" tab, and click the "check now" button.
    to do a disk defrag, go "start > all programs > accessories > system tools > disk defragmenter"
    love, b

  • Multi Screen with Nuendo/Cubase

    Hi all! Sort of ripping my hair out here, if anyone could offer some info that'd be much appreciated. I believe this is an OSX problem rather than Nuendo problem but I'm not 100% sure. So I work in a Post Production Audio studio and we are using a late 2012 iMac, set up with Thunderbolt as follows:
    Thunderbolt > HDMI > Gefen Toolbox > HDMI > Projector (display 3)
                                                                 > HDMI through wall > Samsung LED TV (display 3)
    Thunderbolt > Akitio ThunderDock (2x USB3, 2x SATA) > Lacie HardDrive bay (2x 3TB HDD) > Seagate HD > DVI > BenQ Monitor (display 2)
    So there are 3 displays in total, internal iMac, Gefen Toolbox splitting to projector and studio TV, and BenQ monitor.
    The problem I'm having is that the split signal through the Gefen is the display which the Nuendo video window sits on. Now up until recently I could double-click this and it would go to fullscreen, (It's not true fullscreen since I could still see the OSX toolbar at the top of the screen, which is fine) but now when I enter fullscreen the window moves down to the iMac main display, it will not full screen on display 3. Also if I click away (Nuendo no longer active window) then when I come back to Nuendo then the video window moves down to the main monitor. All my windows on monitor 2 (mix window and marker window) don't move to the main monitor. Also the video fullscreen DOES work on display 2. So display 2 working fine, but display 3 (split) is not. Any ideas?
    Thank you in advance!

    Assuming your PB is the original 2003-vintage with a 1.0G video processor and 64MB of video memory, the Apple spec sheet shows this:
    ===========
    Video and graphics support
    • --NVIDIA GeForce4 440 Go graphics processor
    with AGP 4X support and 64MB of DDR SDRAM
    video memory for 2D/3D graphics acceleration
    • --Dual display and video mirroring: Simultaneously
    supports up to 1440 by 900 pixels on the built-in
    display and up to 2048 by 1536 pixels on an
    external display, both at millions of colors5
    • --DVI output port
    ===========
    Yours may have an ATI video chipset; run System Profiler from your Utilities folder to find your exact video processor details.
    Beyond that, you may need to contact ViewSonic to see if there are any "gotchas" that would prevent one of their monitors from working on a 1G machine.
    This Cardbus adaptor:
    http://eshop.macsales.com/item/Viewsonic/VTBOOK/
    Gives you another display port with 32MB VRAM.

  • Can't access email. Screen is frozen with spinning multi colored circle

    Can not access emails. Screen is frozen with spinning multi colored circle

    press "command+option+esc" to quit the unresponsive program.

  • I'm trying to set up my iphone 5s and it has been on the apple screen for hours with no improvement

    I'm trying to set up my iphone 5s and it has been on the apple screen for hours with no improvement
    I don't know  how to restart it...I've tried everything and it won't move away from this screen.  It's been plugged into my computer for a while now, and still does nothing.

    You need to connect to the compuer via the lighting cable that came with it. IF that failes follow this article http://support.apple.com/kb/HT1808

  • Help with laptop screen?

    I am wondering if all I need to order is a new laptop screen or if I will need anything else replaced. I'm not sure what all comes when you order a new laptop screen like if its just the outer glass or full screen assembly. I will try to give as much detail as I can. I was also wondering if anyone knows of a good site for screens that has a good reputation and pricing?
    I have a Lenovo B570 Model: 1068-AFU Laptop. My son was using it and he closed the screen with a pencil (or something) laying on the keyboard. He then decided to lay his book(s) on top of it. When he opened it the next day and turned it on the screen was all messed up. The glass itself about 2" from the bottom of the screen up against the left side is a small crack that spider webs out about 1-2 inches. Around the crack the screen is black with a purple line surrounding it. Most of the upper left of the screen is white with multicolored vertical lines, the rest of the screen you can see the login screen but has horizontal lines and the whole screen is flickering like crazy. I can still move the cursor around but can only see it in the top right ⅓ of the screen where the only change is the flickering.
    Solved!
    Go to Solution.

    hi DreadSpawn,
    Welcome to Lenovo Community Forums!
    Based on your description, You just have to replace the LCD Screen,
    This link should get you going, Screen from resellers don't come together with the covers. So I would suggest to examine the LCD covers on your computer see if it took damage as well, Normally If the Plastics were damage the LCD Itself will move while still attached to the covers.
       You can Check this Hardware Maintenance Manual about Checking and replacing parts on your B570.
    Just be extracareful in replacing parts, If you can have a Local Tech replace it then that's OK.
    Hope this helps
    Cheers!
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • TS4002 I had 2 iCould Accounts - one on MacBook Pro and one on iPad - long story.  I changed the one on my iPad to sync with laptop.  Now I can not get my iCloud mail on my iPad since it only want to set up a new one, not my existing one.  How do I fix it

    Hi:
    I had two iCloud account - one on my iPad set up with Me.com.  Its a long story as to why I had two account which I will not the issue.  I changed my iPad account to link up with my MacBook Pro account - which is my primary account.  After doing this all seemed OK except I could not get y primary iClould email account set.  When I tried to add my primary iClound email account it only allows you to add a NEW iClould account which is not what I want.
    How do I correct this issue?  Thanks.

    Thanks Winston but your solution did not work.  In my iCould account everything works except Mail - that being contacts, calendar, reminders, etc.  When it comes to mail it is currently OFF.  When I turn it ON, it states that I need to create a NEW free iClound account, and allowing me to establish my existing account. 
    When I tried your solution, it stated that the account already exists but in reality it is not on my iPad.
    Any more thoughts?

Maybe you are looking for

  • Dll function calls from VB6 to Labview do not work.

    HI, We are transferring our production test systems from VB6 to Labview, and we are using "CAN-AC2-PCI" cards. When call functions of dll "canacpci.dll", UUT does not response at all, and Labview program does not report any error either. Attached are

  • Windows XP Mode, Unidentified device fails to attach

    Would you please assist me with the following: I wish to use a CDR 2000 USB x-ray sensor in Windows XP Mode under Windows 7 Pro 64. There are no drivers available for Windows 7, there are drivers available Windows XP.  The sensor works correctly on a

  • Firefox Window Will not Open on iMac

    When, I open firefox the options menu loads in the tool bar at the top of the screen, but is grayed out. Also, the main window does not open. I can access some options from the tool bar, but the browser window never opens. See screenshot - http://scr

  • Testing POS DM

    Hi, We are working at retail project and want to test POS DM functionality. Can anybody give us idoc WTUBON01 XML file for testing purposes, or say how we can convert XSD from we60 to XML file without XI(PI)? Kind Regards Sergey

  • Getting Action Task Id of Guided Procedure Process

    Hi,     The scenario is i have three actions with web dynpro GP Interface Callable Object in GP Process.This GP Process is initiated from web dynpro application.Once i initiate the process the first action start and display the action in the uwl.Once