Portege R600 / A600 and Dual Screen Output

Hi,
Could you tell me if it is possible to output to dual screens on the R600 or A600 with any of the Toshiba docking solutions?
I have been told it is possible however I was told today by Tosh sales that it is not possible to do. I'd like to do away with my home pc and office pc and just roam between the two with a notebook. However I do use an extended desktop on two screens and would need this to work.
Any advice on this?
Thanks,
Paul

Not sure if you mean two screens plus the laptop screen or two including the laptop, but If it's any help, I use a Slim Port Replicator with my R500 running Vista and have a second monitor plugged into its DVI output. The two screens work fine as an extended desktop.
I also find it useful to install Ultramon (http://www.realtimesoft.com/ultramon/). This adds a task bar to the second monitor.

Similar Messages

  • Xfce4 and dual screen issues

    I have setup dual screen in xfce4, i have added
    xrandr --output VGA --left-of LVDS
    to xfce4 startup apps. But the issue is that both screen defaults to 1024x768 and if it change the resolution to the correct one my laptop screen turn black. This is some what the similar kind i issue i face in kdemod4 but gnome work ok with with the above command.

    What video card?
    What drivers?

  • I'd like to see next generation of Touchsmart PC with Touchsmart keyboard and dual screen

    Where you have a monitor as the display and a seperate keyboard, but the keyboard is another monitor which operates as a keyboard, for example something like this... 
    This ultimately would mean that the keyboard could be application driven, that is it could be specifically configured anyway that the application requires it.  I'd also like to see a dual screen option for touchsmart PC - a screen that is built in and can be slid out from the rear of the monitor to act as dual screen, extended screen...
    HP ENVY 17-j005tx Notebook, HP ENVY Recline 27-k001a, HP ProLiant MicroServer Gen8 G2020T, HP MediaSmart EX495 Server, HP MediaVault 2020, HP ENVY 120 AiO Printer

    Jim,
    You may want to check out this community for developers. I'm pretty sure HP is aware of the goings-on in these forums:
    http://www.touchsmartcommunity.com/forums
    ... an HP employee expressing his own opinion.
    Please post rather than send me a Message. It's good for the community and I might not be able to get back quickly. - Thank you.

  • Using Keynote with Podcast Capture and Dual Screens

    Hi everyone,
    We are trying to use a dual screen setup to record some Keynote presentations using Podcast Capture (i.e Dual mode, with the Keynote presentation in one screen and the presenter in the other).
    The problem we are having is that when in full screen mode, Keynote takes control of both displays, thus stopping the Podcast application from being displayed. Even if we switch off the Presenter Display on the second screen, the second screen turns black.
    I know we can start and stop recording with hotkeys, but we would prefer to be able to see the Capture app in one window with the presentation full screen in the other.
    Perhaps this is just an oversight on Apple's part, but I'm finding it hard to believe its not possible. If anyone else has a workaround then please share.
    Thanks.

    Other applications are not visible when Keynote is playing back.  Keynote takes over control of the graphics system when playing back presentations to enable Keynote to display properly.
    When I play back Keynote and I want to look at a second application, I use a second Mac.

  • Using Selection screen and selection screen output

    Hi All,
    I am trying to execute AT SELECTION-SCREEN and AT SELECTION-SCREEN output. Both the para's working fine seperately. But when I execute them together AT SELECTION-SCREEN output is not working. Please let me know how to solve this problem. Please see below for the code.
    PARAMETERS:  p_werks LIKE marc-werks OBLIGATORY MEMORY ID WRK,
                 p_lgort LIKE mard-lgort OBLIGATORY,
                 p_rlgort LIKE mard-lgort OBLIGATORY.
        PARAMETERS: p_boml TYPE c RADIOBUTTON GROUP mode user-command flag.
            SELECTION-SCREEN: BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
                PARAMETERS: p_aufnr LIKE aufk-aufnr MODIF ID cp2.
            SELECTION-SCREEN: END OF BLOCK b1.
    *SELECTION-SCREEN COMMENT 1(44) text-004 FOR FIELD p_cmpl.
        PARAMETERS: p_cmpl TYPE c RADIOBUTTON GROUP mode.
           SELECTION-SCREEN: BEGIN OF BLOCK b2 WITH FRAME TITLE text-002.
                PARAMETERS: p_matnr type marc-matnr MODIF ID cp1,
                            p_verid type afpo-verid MODIF ID cp1,
                            p_labst type mard-labst MODIF ID cp1.
           SELECTION-SCREEN: END OF BLOCK b2.
       PARAMETERS: p_mstr TYPE c RADIOBUTTON GROUP mode.
    AT SELECTION-SCREEN output.
      LOOP AT SCREEN.
        IF p_boml <> 'X' AND
           screen-group1 = 'CP1'.
           screen-active = '1'.
           MODIFY SCREEN.
        ENDIF.
        IF p_cmpl <> 'X' AND
           screen-group1 = 'CP2'.
           screen-active = '1'.
           MODIFY SCREEN.
        ENDIF.
        MODIFY SCREEN.
      ENDLOOP.
    AT SELECTION-SCREEN.
      IF p_boml EQ 'X'.
        IF p_AUFNR EQ space.
            MESSAGE e000(z1) WITH 'Please fill Production Order.'.
        ENDIF.
      endif.
      IF p_cmpl EQ 'X'.
        IF p_MATNR EQ space  OR p_verid EQ space OR p_labst EQ space.
            MESSAGE e000(z1) WITH text-003 'Production Version & Quantity. '.
        ENDIF.
      endif.
    Thanks,
    Senthil

    Hi Senthil,
    As far as my knowledge is concerned AT Selection-Screen output and AT Selection-Screen wont work together.In this code you are trying to do the validation in AT Selection-Screen. Instead of that try doin your validations in Start-of-selection Event.
    i,e., modify your code as follows:
    PARAMETERS: p_werks LIKE marc-werks OBLIGATORY MEMORY ID WRK,
    p_lgort LIKE mard-lgort OBLIGATORY,
    p_rlgort LIKE mard-lgort OBLIGATORY.
    PARAMETERS: p_boml TYPE c RADIOBUTTON GROUP mode user-command flag.
    SELECTION-SCREEN: BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
    PARAMETERS: p_aufnr LIKE aufk-aufnr MODIF ID cp2.
    SELECTION-SCREEN: END OF BLOCK b1.
    *SELECTION-SCREEN COMMENT 1(44) text-004 FOR FIELD p_cmpl.
    PARAMETERS: p_cmpl TYPE c RADIOBUTTON GROUP mode.
    SELECTION-SCREEN: BEGIN OF BLOCK b2 WITH FRAME TITLE text-002.
    PARAMETERS: p_matnr type marc-matnr MODIF ID cp1,
    p_verid type afpo-verid MODIF ID cp1,
    p_labst type mard-labst MODIF ID cp1.
    SELECTION-SCREEN: END OF BLOCK b2.
    PARAMETERS: p_mstr TYPE c RADIOBUTTON GROUP mode.
    AT SELECTION-SCREEN output.
    LOOP AT SCREEN.
    IF p_boml <> 'X' AND
    screen-group1 = 'CP1'.
    screen-active = '1'.
    MODIFY SCREEN.
    ENDIF.
    IF p_cmpl <> 'X' AND
    screen-group1 = 'CP2'.
    screen-active = '1'.
    MODIFY SCREEN.
    ENDIF.
    MODIFY SCREEN.
    ENDLOOP.
    START-OF-Selection.
    Perform validation.
    form validation.
    IF p_boml EQ 'X'.
    IF p_AUFNR EQ space.
    MESSAGE e000(z1) WITH 'Please fill Production Order.'.
    ENDIF.
    endif.
    IF p_cmpl EQ 'X'.
    IF p_MATNR EQ space OR p_verid EQ space OR p_labst EQ space.
    MESSAGE e000(z1) WITH text-003 'Production Version & Quantity. '.
    ENDIF.
    endif.
    endform.
    Kindly reward if useful.
    Thanks,
    pavithra

  • MEGA PC And Dual Screen

    Hello everybody
      (sorry for the faults i'm french)
    I had a Mega-PC 651 whit a celeron 2Ghz, 512 of RAM, and a Geforce 4 card.
    I would like to know if we can use the graphic chipset of the MegaPC AND a graphic card.(Because I would like to do a dual screen computer).
    Help me please : firts to know if it's possible and secondly if you can give me a little Howto.
    Thanks creon

    I haven't seen your card, but if the diminsions are anywhere near the same as my AIW, it's a pain in the @$$ to install; but not impossible.  If this was a 'normal' computer, my answer would be YES it will work, but because this MEGA180 has been nothing but a pain in the but, I have to say PROBABLY it will work.  I posed a fairly detailed description of what I had to go through to get my card installed, maybe reading that will give you some idea about what may need to be done in your case.  
    Good luck

  • KVM Between Mac Mini and Dual Screen PC????

    Hello All,
    I was wondering if one of  you has the answer this.....
    For work I am now working remotely from home. I have a ThinkPad W520 with Dock and two 19" ViewSonic monitors both with DVI cables. Since space in my place is an issue, I want to share my sons desk wich has a Mac Mini with an HDMI to DVI cable to a 19" Monitor.
    My question is......is there a KVM switch out there that will allow for my setup plus keyboard and mouse to be used with the Mini? Then he can run dual screens on the Mini when I am not working.
    Thanks for the help with this one!
    Alex

    I am not aware of any KVM which can share two screens. The best you are likely to be able to do is put one of the screens with the keyboard and mouse on a KVM and share those.
    You could also have a look at http://synergy-foss.org/

  • [Solved] no signal w/ second monitor and dual screen using nouveau, i3

    Hi!
    I just brought my old screen to my room and try to make it work. It works when the other one is not connected, so no hardware problems. The result is that I can go to the right and do stuff and move the window to my working screen, but the monitor stays black and says "no signal". I tried a long time with nouveau but without success. I was not able to make the graphic card work with the propretary driver from the website and I don't want to downgrade the xorg-server to 1.12 to install nvidia-96xx...
    %lspci | grep VGA [0]
    01:00.0 VGA compatible controller: NVIDIA Corporation G94 [GeForce 9600 GT] (rev a1)
    %xrandr [0]
    Screen 0: minimum 320 x 200, current 3200 x 1200, maximum 8192 x 8192
    DVI-I-1 connected 1920x1200+0+0 (normal left inverted right x axis y axis) 518mm x 324mm
    1920x1200 60.0*+
    1920x1080 60.0
    1600x1200 60.0
    1680x1050 59.9
    1280x1024 60.0
    1280x960 60.0
    1024x768 60.0
    800x600 60.3
    640x480 60.0
    720x400 70.1
    DVI-I-2 connected 1280x1024+1920+0 (normal left inverted right x axis y axis) 376mm x 301mm
    1280x1024 60.0*+ 75.0
    1280x960 60.0
    1152x864 75.0
    1024x768 75.1 70.1 60.0
    832x624 74.6
    800x600 72.2 75.0 60.3 56.2
    640x480 75.0 72.8 66.7 60.0
    720x400 70.1
    %cat .i3/config
    ### ommitted lines
    # Multi-monitor setup
    workspace 1 output DVI-I-1
    workspace 2 output DVI-I-1
    workspace 3 output DVI-I-1
    workspace 4 output DVI-I-1
    workspace 5 output DVI-I-2
    workspace 6 output DVI-I-2
    workspace 7 output DVI-I-2
    workspace 8 output DVI-I-2
    workspace 9 output DVI-I-2
    workspace 0 output DVI-I-1
    ### ommitted lines
    How I connect it:
    %xrandr --output DVI-I-2 --right-of DVI-I-1
    nl /etc/X11/xorg.conf.d/20-nouveau.conf [1]
    1 # the left one
    2 Section "Monitor"
    3 Identifier "DELL"
    4 Option "PreferredMode" "1920x1200_60.00"
    5 EndSection
    6 # the right one
    7 Section "Monitor"
    8 Identifier "NEC"
    9 Option "PreferredMode" "1280x1024_60.00"
    10 Option "RightOf" "DELL"
    11 EndSection
    12 Section "Device"
    13 Identifier "nvidia card"
    14 Driver "nouveau"
    15 Option "Monitor-DVI-I-1" "DELL"
    16 Option "Monitor-DVI-I-2" "NEC"
    17 EndSection
    18 Section "Screen"
    19 Identifier "screen1"
    20 Monitor "NEC"
    21 DefaultDepth 24
    22 SubSection "Display"
    23 Depth 24
    24 Virtual 3200 2224
    25 EndSubSection
    26 Device "nvidia card"
    27 EndSection
    28 Section "ServerLayout"
    29 Identifier "layout1"
    30 Screen "screen1"
    31 EndSection
    I don't know what I should try. I haven't tried yet the "old-school" Xinerama stuff, but it seems tedious and error-prone...unless someone tells me that it is actually a different and possibly working approach I'm not going to try it. Any hint is welcome! :-)
    Best,
    Marc
    Last edited by Maximalminimalist (2013-11-20 09:57:44)

    Hi!
    Thanks for pointing out the repo..I did yaourt -Ss nvidia from the beginning and I didn't pay attention to the nvidia package. Sometimes archlinux is more user-friendly than one expects...
    So now my second monitor works. :-)
    Moral of the story:
    If you want to use the NVIDIA driver, read
    https://wiki.archlinux.org/index.php/Nvidia
    And if it doesn't work, read
    https://wiki.archlinux.org/index.php/Nvidia
    again, because maybe you missed something...
    Best,
    Marc

  • Copying Presets and Dual Screens

    Hi there,
    I am running a small home studio and have just hooked up another monitor to my imac.
    First question, how do I put the mixer in a separate window on the second screen. I want it so I can have the arrange page on the main screen and then the mixer on the other as they're the main ones I use.
    Secondly, I am recording a 6 track EP for my band, I have set up all the tracks ready for the first song but when I come to mix and master them at the end how can I apply all the same EQ settings, effects, levels and such to every song if they are seperate logic files?
    I look forward to your responses, thank you

    Hi
    Start here. Go ahead and mix then bounce your songs (to 24 bit aif). Load a Logic Mastering Template. Drag your tracks in serially (in a row) or parallel (side by side, after setting up enough tracks - 6 in your case).
    I often do the parallel method so I can quickly mute/unmute for fast comparisons of overall level and energy.
    Bounce to 16 bit with dithering to burn disks with the files. (I use Bias Peak for assembling the disk image.)
    There are many ways to skin this cat. Many.
    Can't help you with dual monitors.
    Cheers

  • Regular and wide screen output viewing

    Hi,
    I was wondering if it is possible to create a project so that
    it will be diplayed properly (page nicely filled and not having to
    scroll) regardless if the audience is viewing the output on a
    regular screen or on a wide screen.
    I have a widescreen and at the moment I change the settings
    of my computer to a lower resolution to record for 'regular'
    screens. But is there a way to record so that I can cater to
    widescreen and regular audiences at the same time?
    thanks!
    Jennifer

    Welcome to our community, Jennifer
    You might try simply linking to the .SWF as the output as
    opposed to the HTML file. This normally causes the file to scale to
    fit the browser size. However, you still may not see it completely
    fill the area. There may still be blank areas on the sides or the
    top and bottom.
    Life is always a trade off, eh? Seems you fix one issue only
    to see a different issue arise as a result.
    Cheers... Rick

  • Screenshots and dual screen logic in macbook

    Ive got a problem, everytime i safe screen settings i worked on in a song, they wont reload.
    When i have for instance arrangement view on the macbook screen, and the matrix edit on the monitor on key 1,,,,, the setting gets lost when saving the song.
    Whats up here??

    Beside the word "windows" is a number signifying what screenshot your currently on, and a dot letting you know that the screenshot is locked. Before perminently changing your screenshot, unlock it by clicking on "lock screenshot". The dot should disappear. Make your changes then go back and choose "lock screenshot". Save before closing out your session, and you should be good.

  • Display issue with vertical windows start menu and dual screen

    Hello everyone
    I never reported it and I didn't find any information on google or mozilla support about this so here it is :
    I am on windows 7 and I set up my windows start menu vertically. I also have 2 screens. These both points are important. If I put the start menu horizontally I do not have the issue anymore, and If I turn off one screen to have the display only on one screen, I do not have the issue anymore, which is a rare setup I guess so it could explain why this bug has never been detected.
    HERE IS THE ISSUE
    I have display issues on website with a big width, even the default add-ons Manager firefox page doesn't display correctly. Here is a screen shot:
    http://img15.hostingpics.net/pics/368172bugFirefoxDisplay.png
    So as you can see the disable and remove button on the right are not displayed, and at the bottom there isn't any scroll bar to scroll ! So I have no way to display the information on the right of the page, and it happens on a lot of other website (gmail, etc)
    It is not such a big issue because my start menu is on my left screen and I can move firefox on the right screen to have a correct display.
    I still think this is worth reporting this bug. I hope it is clear, feel free to ask questions if you didn't understand.

    You can try to disable hardware acceleration in Firefox (you need to close and restart Firefox).
    *Tools > Options > Advanced > General > Browsing: "Use hardware acceleration when available"
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    *https://support.mozilla.org/kb/upgrade-graphics-drivers-use-hardware-acceleration

  • Fans noisy with Maverick and dual screen

    Hi,
    I use a second screen on my MBP.
    Since I have installed Maverick 10.9.1, the fans rotate at 5500 rpm all the time (even when I do nothing). And... it's noisy !
    If I unconnect the 2nd screen, after seconds, the fans rotate slowlier.
    When I was on Mountain Lion, this problem wasn't.
    I try a SMC reset with no success.
    I don't know if there is a solution or if I must wait for the new release of Maverick.
    Thankl's for your help.
    Fabrice - Bordeaux (France)

    Either use separate X (gnome remembers things properly then) or learn to deal with not having that many panels . Separate X means you can't drag windows from screen to screen.

  • Portege R600-Q10 and Port Replicator II

    Hello! I have a small problem....I had Toshiba Porteble R500 and PRII but now I can't find this laptop in my country.
    So I'm thinking about Toshiba Porteble R600-Q10 but i can't find does it work on PRII.
    I know that PRIII is OK but I dont wonna buy new Port Replicator.....
    Matt

    I am afraid with this notebook model you can use slim port replicator III onlu.
    Check it HERE .
    http://laptops.toshiba.com/accessory/PA3681U-1PRP

  • Dual screen show..

    Hi there..
    anyone has a solution for making a dual output show in keynote. I have to make a dual 1024x768 setup as one large widescreen show.

    Hello what's this?
    Just saw this today:
    http://www.matrox.com/graphics/offhome/dh2go/home.cfm
    it's a little box that appears to your computer as one BIG WIDE monitor. you then connect two smaller monitors to it and you get a tiled setup.
    Here's the good part...though it's listed as PC only, their site mentions this:
    "though there is no official support for Mac computers at this time, preliminary testing shows that basic DualHead2Go functionality is available on most Apple Powerbook laptops. Matrox is continuously testing new devices and working on expanding DualHead2Go compatibility."
    I doubt it would work for say, adding a true dual screen setup to a Mac mini, it sure would give you a dual screen output for Keynote, where the two screens are meant to connect left to right to each other. You'd simply have to make your Keynote slide twice as wide as a regular screen. VERY cool.

Maybe you are looking for

  • How can i get my get my icloud username and need it to activate my iphone. have try to use my apple id but it asking for the email id.

    how can i get my apple id ending with icloud,com back as i forgot it and cannot sign in on icloud thus cannot unlock my iphone5s

  • Decent HD camcorder compatible with FCP?

    I really need to get an HD camcorder and the most important thing for me is easy compatibility with Macs and uploading to Final Cut Pro X, which I have. My budget is under $600, so obviously how good the HD quality is is not the priority here. I've l

  • Help with my iPod shuffle!

    I recently got an iPod shuffle for xmas. The iPod was bought in Sweden, and my Dad installed iTunes onto his laptop then put music from that laptop onto my iPod. It worked fine. Then I got back to the UK, installed iTunes and tried to put music onto

  • Edit a mounted file on the portal

    Hello, I have mounted a directory from our file server on our portal server. I implemented this directory in our KM file structure with a file system repository. Now in this directory is an Microsoft Excel file. The mount is read-write and I have wri

  • Creative Cloud Set-up error 42

    When attempting to download the Photoshop CC trial,  I am encountering the following error shortly after running the CreativeCloudSet-Up.exe We've encountered the following issues Installer was unable to access a critical file/directory.  Please try