External monitor and bootcamp

hi guys, my external monitor works perfect with leopard but with windowsxp don´t and it goes on blue screen error. Seems to be tipical windows drivers problem. Any idea?
Thanks!

Hey mayaman,
Did you install the recently released Bootcamp update?
If not, get it here : http://www.macupdate.com/info.php/id/27367/apple-bootcamp
I don't get a blue screen but Windows Vista in that case won't recognize my external Display. Only after a reboot it works without any issue.
Franz

Similar Messages

  • FCP Problem with Firewire output to external monitor and speaker ???Help

    i have a g5 powermac. the problem is when using Final cut pro 4hd. when i output my work through firewire to my external monitor and speaker i have a problem with the audio signal. Theres feedback/noise/hiss from the speakers. The firewire connects to DSR-11 vtr deck which feeds my monitor and speakers. it only happens when in FCP is set to A/V firewire output. does not happen if Video output is not set to firewire.
    I Diagnosis is that it is not my dsr-11 deck or firewire i've ruled those out. The problem is either FCP software or Hardware problem with my G5
    Does anyone have a similar problem. please respone, i will try to answer any respones,
    Thanks
    powermac g5     powermac

    CaptM
    From the firewire that feeds the dsr-11. on the output, i use s-video cable to my monitor (sony pvm-14l) and High Quality rca cables thet feed the audio to the Roland Speakers.
    I've changed all wires and still have audio problem. I,ve changed my Dsr-11 deck to my camcorder and still have the problem.
    If any of u guys use FCP The problem happens When I select view> external Monitor > and select firewire for Audio/ and video. I have never changed my editing habits, something just went wrong with the signal, I think its a Hardware problem with the firewire connection. I'm Going to have to bring this to a Apple Service Center In my local area one day.

  • Using the MacBook Pro with external Monitor and Keyboard

    This may be a dumb question, but here it goes anyway:
    Can I use the MacBook Pro with an external monitor and a bluetooth keyboard and mouse without having it opened all of the time ?
    I am planning to buy a MacBook for my wife and most of the time she will be using it at her home office.
    I don't want her to use the computer opened all of the time when she is actually looking at the separate screen and using a separate keyboard. Having the laptop opened will only accumulate dust and reduce the lifetime of the built in screen.
    What I would actually need is a kind of "docking station", but Apple doesn't make that - I know.
    So can the MacBook at least be operated without the internal screen powered on while it is closed?
    Thanks for your help
    Martin
    Message was edited by: mdopp

    Yes - it's called clamshell mode:
    http://support.apple.com/kb/HT3131

  • Using the GT70 with external monitor and lid closed

    I wasn't sure where to post this question.
    I have several laptops and use external monitors. I close the lid on the laptops and the display continues to work.
    On the GT70, the system shuts down. It won't allow me to use the external keyboard and mouse or display the session.
    Any suggestions if there is a configuration option to allow the GT70 to continue to function with external monitor and lid closed.

    Yup. This is a windows setting. You need to go into your control panel -> power options -> "Choose when the computer sleeps" and "Choose what closing the lid does"
    That should solve the problem. I currently have my GT70 hooked up to a 42" TV and I can close the lid and it stays on and the TV continues displaying as well. No problems. =]

  • MacBook Pro with external monitor and keyboard.

    Hello, everyone.
    I've tried to find the answer for this question but haven't found a clear answer with my Google search.
    My older Powerbook G4 will not allow me to work with an external monitor and keyboard with the screen in a closed position. I am about to purchase a new MacBook Pro and would like to be able to use it at home with a larger monitor and keyboard but with the lid closed and its built-in screen turned off. Can this be done ?
    How can a MacBook Pro be used (turned-on) with external monitor and keyboard while the lid is closed and the its screen is off ?
    Thank you in advance for your answers.
    Joseph

    Hi Niel,
    I have the same problem with my MacBook and I followed the instructions you posted. My issue is that when the computer wakes up after clicking the buttons on the keyboard it then quickly goes back to sleep. I can't seem to keep it awake when the lid is closed. I've been searching for an answer without any luck. Any idea how to solve this problem?
    Thanks!
    P.S. After I finished posting this message I figured out my problem. While fiddling with my computer and monitor, I inadvertently disconnected the power. After reconnecting the power, I was able to wake my computer and keep it awake. A note to other people having this issue: the computer must be connected to a power outlet to run in closed mode.
    Message was edited by: qwertyphd

  • External Monitor and LXDE

    I run Arch + LXDE on my laptop and everything works great. Recently, I attempted to attach my laptop to an external monitor and use lxrandr to output only to the external. When I first tried it, the output worked fine but I was unable to adjust the resolution on the external monitor to anything greater than the best resolution I can get with my laptop. After restarting X, though, I was able to get max possible resolution on the external. However, this does not happen automatically, and every time I attach the monitor I have to reset the resolution to the best possible. Also, PCManFM only displays the desktop on a portion of my monitor equivalent to the laptop resolution (1280x800) even though the laptop monitor is disabled by lxrandr. The rest of the desktop is just openbox; when I right click on it, I get the openbox menu. Furthermore, when I attempt to switch to an agetty, the display is not aligned and most of the left side of the output is cut off. However, if I open the laptop, the agetty output works nicely there.
    The agetty problem doesn't surprise me because that has nothing to do with Xorg, but it would be really nice if everything just worked. I have tried looking for similar problems (and solutions), but I can find very little information. I would like to have PCManFM put the desktop on the whole display, I would like to have the best resolution automatically when I plug in the external, and (maybe) I would like to be able to use the agetty terminals when I just want to work from the terminal.
    Thanks!

    I want to avoid setting up a xorg.conf file, and arandr works pretty much the same way as lxrandr. So I decided to write a simple script that I could run at startup to automatically set the resolution of all attached monitors to the maximum possible. Here is the script, and I can run it from /etc/xdg/lxsession/LXDE/autostart:
    #!/bin/bash
    query=`xrandr -q 2>/dev/null`
    screens=`echo "${query}" | grep '^[A-Za-z].*' | sed -e '/^Screen.*/d' -e 's/[ \t].*$//g'`
    c=0
    for s in $screens; do
    screenarr[$c]=$s
    c=$(($c+1))
    done
    displaylines=`echo "${query}" | grep -n '^[A-Za-z].*' | sed -e '/^[0-9]:Screen.*/d' -e 's/:.*//g'`
    c=0
    for i in $displaylines; do
    resline=$(($i+1))
    res=`echo "${query}" | grep -n '.*' | sed -e "/^$resline:[ \t].*[0-9]/!d" -e 's/^[0-9].*: *//' -e 's/ .*//'`
    if [ "$res" != "" ]; then
    xrandr --output ${screenarr[$c]} --mode ${res} 2>/dev/null
    fi
    c=$(($c+1))
    done
    I wrote this really quickly so if anyone has an suggestions for improvement that would be great. I am hoping to generalize this so that you can pass it simple parameters to have some control as to how your monitors are configured. Also, if you have a better way to extract the monitor information than from xrandr -q and regex that would be a huge improvement.
    When run from autostart before PCManFM, PCManFM fills the full screen with the desktop.

  • No video when using external monitor and resuming from sleep.

    I know some people were having problems with the new MacBooks, but I guess the Mac driver fixed something. However, when I'm in Windows and have my Dell 24" hooked up to the Mini DisplayPort -> DVI adapter, I cannot resume from sleep. The monitor will turn on, but I can't get an image on it.
    In MacOS it seems to resume from sleep fine, but not in Windows. Anyone else seeing this?
    Thanks!

    Is no one else getting this error? Does anyone have any issues when their MacBook is hooked up to an external monitor and it goes to sleep?

  • Preventing SLEEP when using External Monitor and Keyboard

    Prior to Leopard, whenever I had an external monitor and keyboard attached and closed the MacbookPro lid the system would not go into SLEEP mode. Now it does.
    What's to be done to prevent this from happening?

    PS.... when this last occurred, the backup drive for Time Machine disconneted when SLEEP was invoke by closing the lid and did not reconnect when the system restarted.
    I also received a 'warning' that a device was not disconnected properly.

  • External monitor in BootCamp?

    I have just ordered a new MacBook to replace my older MacBook Pro and have heard that you cannot use an external monitor (or projector) in BootCamp with a MacBook. Actually I was pointed to an Apple doc that says you can't use external monitors with either the Macbook or Macbook Pro...which I know isn't accurate, as I've used my Macbook Pro with various displays and projectors in Bootcamp since I got it over 2 years ago. Can anyone confirm that you can use the mini-DVI to VGA adapter in Bootcamp? I need it to run some presentation software. thanks!

    yeah
    u can

  • Is there a way to only use external monitor and have the MBP open to keep it cool?

    I'd like to be able to just use an external monitor with my MBP due to space limitations, However, when I close the lid on my MBP, it overheats and the fans go crazy, making a terrible racket without cooling the machine :/.
    The Screen preferences do not cater for this setup in any way.

    Have you tried placing the Mac on a stand? There are even models with fans for greater cooling effect.
    AFAIK, there is no air movement thru the keyboard or speaker grilles as the fans do their stuff thru the slot below the lid hinge. Maybe taking one of those "compressed air duster" cans and blasting away on the area may help; every time I've done so on mine a mini desert storm of dust has come out.
    What you're trying to use is Clamshell Mode. See if this helps any: http://support.apple.com/kb/HT3131

  • Has anyone seen the blue flashing screen on MBP running 10.6.8?  It looks like you are plugging in an external monitor and unplugging it over and over.

    So, I have called Apple twice about this issue.  Both times, I was on for almost an hour and could not get an answer.  In fact, the technicians said that they had never seen this issue before.  Here is how it goes.
    It has happened MacBook Pro laptops anywhere from 2010 to now.  I have seen it on new ones with Thunderbolt and ones a generation before.  In the environment I work in, we have many, thousands from ranging from all generations.  This specific issue seems to only be affecting 10.6.8.  When the computer boots, it starts to flash blue as if you just plugged in an external montior, except there is no monitor, and it keeps flashing blue about once every second.  I actually have a video of it on my phone that I can send to show you.
    Now, like I said, this is happening to multiple laptops, all running 10.6.8.  There isn't a particular action that causes it either.  I have seen laptops that have been running for hours just start doing it as well as a completely cold start up do it right at the login screen.  Upgrading to 10.7.x seems to solve the issue.  But you have to understand, the environment I work in has thousands of computers.  Upgrading many of them to Lion just for this is just not practical.  In some cases, there is software that will not function correctly beyond 10.6.8.
    I have scoured though Google searches for hours now looking for a similar issue and a resolution.  The answer I always seem to find is just upgrade.  I can't seem to find a discussion beyond 2011 that talks about it.
    Can someone help me?
    Chad

    By the way, I have tried shutting of the display switching in the power settings.  That was basically the only real answer I found anywhere.  It didn't work.

  • Port Replicator loses connection to 2 external monitors and moves all the windows to the main screen

    I recently purchased a Lenovo USB 2.0 Port Replicator with Digital Video (0A33942) to use with my Lenovo ThinkPad E530 laptop and two external monitors. One of the monitors is plugged into the port replicator with a VGA cord and the other one is plugged in directly into the laptop also with VGA.
    The issue I'm having is randomly during the day, both screens will go blank, when they come back up everything that was open on the second screen gets moved to the main one. This happens about 15 times a day and although not a life threatening issue, it's still more of an annoyance moving everything back to the second screen as it was originally set up.
    I have gone to Power Options and I have switched the sleep mode to 'Never'. Anyone have any suggestions? This is really driving me nuts. I tried calling Lenovo support and they told me this wasn't in "their scope" of support issues.
    Thanks

    this is a driver incompatibility issue, it happens with some displaylink devices. I had this problem with the Lenobo USB 2.0 port replicator before.
    Since the E530 has USB 3.0, i suggest you get a Lenovo's USB 3.0 dock, which will support 2 external LCD (but only one of the dvi on the dock can be converted to vga).
    Regards,
    Jin Li
    May this year, be the year of 'DO'!
    I am a volunteer, and not a paid staff of Lenovo or Microsoft

  • External monitor on Bootcamp windows 7? (IMAC)

    I am having problems with getting my external monitor to work in windows 7. It works properly with mac. It seems that the problem is that is does not detect the screen, as there is only 1 screen detected so i cannot choose a second one. I am using that mini port to VGA adapter.
    I hope you can help me.
    Message was edited by: BooMI

    i had this all figured out, kind of, but i had to leave my macbook pro open (with a black screen) and all worked..but then i had to play around, and i checked a box, can't remember which one tho....next thing i know...external display and laptop display r black.....after playing around in safe mode and not getting anywhere i used my fire kindle and figured out how to boot back to mac......and now i am here asking for help...
    any insights.....
    running early 2011 mac with lion, and bootcanp win 7
    k

  • No preview on external monitor and histograms black?

    Hi, im having a problem with previewing. In the upper left room i see the footage (also changing when grading) but the rest of the rooms and my preview monitor are black. Histograms are not working.
    Rendering and sending it to final cut works.
    Im using a blackmagic decklink card for the output of the external monitor. Footage comes from the RED, 2K.
    A colleague has the same mac pro but is using the older cinema screens. He has no problems. I use the new 24". Could that be the problem?
    Does anyone has a idea what is going wrong?
    Thanks.

    Ummmm.....
    mismatched display settings between COLOR and the BM card?
    jPo

  • Footage Freezing on External Monitor and Timeline

    Hi,
    I'm scratching my head over this. I have a Sony HD TV I am using as an external monitor to display Final Cut from by Macbook Pro (I know to get the best quality I should get a Matrox, but I can't afford it at the moment).
    The macbook is hooked up to the TV via an HDMI convertor from the miniDisplay port. If I drag the canvas window onto the TV the footage (HD 720p, ProRes 422) plays fine.
    However, if I try to play the footage using Digital Cinema Desktop Preview the footage freezes on both the TV and on the timeline - the audio plays fine though!
    I simply cannot see why this could be happening. Does anyone have any advice - it would be very much appreciated!!

    Pulled it onto a hard drive but it made no difference.
    I managed to get it hesitatingly working by checking 'mirror on desktop' in audio/video prefs, but the video only plays for a few seconds then stops.
    I have tried various different files and formats but they are all the same.
    Unfortunately but I have to go out now but thanks for all your help so far - it seems I will have to do more head scratching and research tomorrow!

Maybe you are looking for

  • The segment contains no receivers:: Message no. GA733,

    Hi, I am facing one  problem in executing KSWB (Plan periodic reposting) The scenario is like we are transfering the acutal cost to plan cost by cj9cs. Subsequently , We want to repost the cost from Plan version to Receiver WBSE . CJ9CS went off succ

  • Org Structure not updating in CRM Correctly

    Hi Experts, We have an issue with their ALE transfer of the HR Org Structure (from the HR box) to the structure in the CRM box. It is (apparently) randomly not updating certain details. Org units and their relationships which are changed in ECC are n

  • Working with timestamp

    Hi, I want to prepare table with scheduled jobs for other program - consumer. I have text column RunHour where I store hour from select localtimestamp from dual But when consumer is connecting and reads that hour it runs processing at its hour - not

  • 890FXA-GD65 and possible USB Controller related issue?

    Hi all - Been having a bad time of it with a new system build for a little under a month now.  Have tried to capture my "notes" below, any idea of a root cause?  Is anyone aware of known issues with the board; the board and Windows 7; the board and s

  • Working with Jpeg image

    Hello, I am currently working with a jpeg image in illustrator.  I would like to first make the part of the image which is white transparent. When I move this image into the quark file which has a grey background in that particular area I would like