How to make a VGA monitor vertically display under an Intel GMA950?

I have a Philips LCD Monitor (200WS8) attached to my thinkpad X41, and wanna use it vertically to display content while the internal screen of X41 have a normal display. But without success, the Philips LCD can get rotate 90 degree clockwise but poor freshrate , which seems that every operation (such as scroll in firefox) in display is really slow, and annoying font display.....
I use this command:
xrandr --output VGA --rotate right
Then I test the internal screen of X41 with the command of "xrandr  --output LVDS --rotate right" and got almost the same result....
Is it possilble to make a vertically display on an Intel card...or... this feature is depended on LCD?

All right,I have set up my Philips LCD vertical display content with normal built in screen... need playing with xrandr & xorg.conf more then....
one question, intel driver in linux support vertical screen?
Last edited by andywxy (2008-11-19 15:23:01)

Similar Messages

  • Help!!! How to make quicktime plugin do not display on top of the web page?

    Any one knows how to make quicktime plugin do not display on top of the web page??? I've tried to change the zIndex property using javascript, but it doesn't work.
    Because we have some widgets which are required to be moved to anywhere on the page, we use iframe to implement that, so it can display on top of quicktime plugin, but the plugin flickers sometimes when we do some operation on the widget which is on top of it.
    Anyone can helps me? Thanks in advance!!!
      Windows XP Pro  

    > Can you tell me how to set the script so that the
    lightbox image is
    > displayed
    > on mouseover instead of mouse click.
    Check the docs. Trent is usually very thorough in his
    instructions.
    Hint: I haven't studied it but it probably involves modifying
    one of DW's
    built-in Behaviors.
    Walt
    "ducati1" <[email protected]> wrote in
    message
    news:gkb906$qrd$[email protected]..
    > Wow that DW extension is just what I needed.
    > Thanks..
    > Can you tell me how to set the script so that the
    lightbox image is
    > displayed
    > on mouseover instead of mouse click.
    > I currently have the thumbnails set to insert the ALT
    text into a text box
    > on
    > mouse click.
    >

  • How to make Mavericks Activity monitor refresh every second

    I noticed that the Mavericks version of Activity Monitor now refreshes only every 5 seconds.  It used to be every second.  I am guessing they intend to make Activity Monitor more energy efficient this way, but is it possible to make it refresh every second like it used to ?
    Thank you !

    All right,I have set up my Philips LCD vertical display content with normal built in screen... need playing with xrandr & xorg.conf more then....
    one question, intel driver in linux support vertical screen?
    Last edited by andywxy (2008-11-19 15:23:01)

  • How to make Macbook work with closed display?

    I need to make MacBook to be closed (display) most of the time and work with external monitor, keyboard and mouse (actually trackball as I have been hating any type of mice since 1998 and not using it even at work).
    Now I do not like mediocre resolution of small MacBook display and I prefer my 20 inch wide monitor. Also the keyboard is rather for quick work in small areas like restroom rather than comfortable work on big desk (I hate notebook keyboards either as they make me feel claustrophobic and crunching my fingers).
    Considering recent buzz on Mac Mini not living for too long into future I would love to find alternative solution (meaning I do not want computer with display and keyboard in one and I do not have needs of spending few thousand of dollars for big metal case good for feeding and breeding birds I have ergonomics demands, but not higg performnce processing needs.
    So can you tell me how I make Apple notebook being closed (and perhaps squashed by monitor stand) behave like a CPU box?
    Thanks,
    Maciek

    Thnaks, but I am not interested in bluethooth/wireless solution. That minimum of cable to reach CPU does not bother me and I do not buy big monitor to work on my computer from adjacent room. I just need space for more windows and I think Apple did great job having USB Hub on keyboard that allows stringing mouse and keayoboard with one cable to CPU.
    Also I haven't heard of wireless KVM and I use such solution. This is not my only computer as I run home network and two of them in my room are supposed to share keyboard, mouse and monitor. So far I was successful to run this setup, but I need inexpensive plain CPU from Apple to be able to find comfortable solution to work.
    Well I could drop the other computer if Apple managed to provide everything that I need (how about Safari properly working with Citrix client and Remote Desktop to Windows as I do not want Firefox on Apple computer? Only Firefox fixes the problems with this software).

  • How to get two vga monitors on a mac mini 2012

    Hi Guys,
    please forgive any ignorance that follows. I am a new convert from a PC and have bought a Mac Mini 2012. I want to be able to use a monitor that I can see my music programme but run a second monitor that will allow me to display visuals from a VJ programme. Here is my journey.
    I bought the mac mini and the thunderbolt to vga adapter. Generic VGA monitor - worked a treat. I then wanted to run a second generic vga monitor form the hdmi port. After a lot research I chose an adapter for £15 that one of the reviews said worked perfectly for a mac mini and VGA. Bought it form Amazon. Didn't work - no signal etc - refund. Then I thought I would buy a monitor / DVD with a HDMI cable and do hdmi to hdmi and use that as the music monitor and use the thunderbolt port for the projector and VJ programme. Bought one from Asda. Plugged in great picture etc worked a treat but got a ground hum from new HDMI monitor. More research and realised that ground hum was a nightmare. HDMI monitor back and refund.
    It is doing my head in.
    I will be a happier man if someone could say that they have a mac mini 2012 and they bought this HDMI VGA converter and use a generic vga monitor and it works a treat. There is only so much stuff I can return before my lick runs out.
    I don't think I'm asking for much.
    Any help would be gratefully received.
    Cheers Pete

    Sorry, but I can not safely suggest a digital HDMI to analog VGA converter or if any would even work with the Mac Mini because I do not have and have not personally tested any.
    I can only suggest that instead of dropping more money into adapters or an HDMI to VGA converter, that perhaps' you should consider replacing one if not both with a more modern digital monitor that support either HDMI and/or DVI.

  • How to make mouse click event to display image on 2D array?

    Hi! beginner programmer here looking for some guidance, hints and tips.
    I'm making a game of "Connect 4" and using a 2D array to display the board which is 7x6 in size.
    What i want to do is that when the player clicks on one of the squares, one of the 2 game pieces(red.png or yellow.png) will appear on the respective coordinates of the 2D array and check if the square in the first row is empty and if true, places/display
    the game piece, else it places the piece on the first empty square.
    Since i've never worked with WinForms or 2d arrays before i'm not sure how to initiate it.
    What i was considering in pseudocode was:
    pb_Mouseclick(object sender, MouseEventArgs e)
    if(e.Button==MouseButtons.Left)
    Picturebox pb=(Picturebox)sender;
    clickLocation.X= e.Location.X + pb.Location.X, pieceArray[row];
    clickLocation.Y=e.Location.Y + pb.Location.Y, pieceArray[col];
    if(pieceArray[row, col] == null)
    if(player1.IsStarter==true) selectedimage(@"yellow.png")
    else
    selectedimage(@"red.png")
    else {
    bool empty= false;
    for(int row=0; row<height - 1; row++)
    for(int col=0; col<width; col++)
    if(pieceArray[row, col] ==null)
    empty=true;
    (Add gamepiece)
    This is what i've come up with so far, but it's just some theorycrafting, not sure if i should use a while-loop instead...
    Hope anyone can give me some insight on how to make it work and if the logic of my pseudocode is correct for what i want according to my earlier explanation.
    Many thanks in advance!
    Regards
    Gabbelino
    Student at the University of Borås, Sweden

    Hi Gabbelino,
    I could not understand your game rule clearly, and could you make explanation for me?
    1.>> when the player clicks on one of the squares
    What were the squares? Did it like dice or anything else?
    2.>> one of the 2 game pieces(red.png or yellow.png) will appear on the respective coordinates of the 2D array
    What is the 2 game pieces? Could you show us the two pictures?
    3.>> check if the square in the first row is empty and if true, places/display the game piece, else it places the piece on the first empty square
    Could you show us where places/display the game piece?
    Best Regards,
    Tony
    Help each other

  • How to make table maintenance generaot in display mode

    Hi,
       I was created table maintenance generator for customized table. I want to use this to view log changes only not for real maintenance.
    How can i make my table maintenance generator as display only(Meaning with out change functionality).
    Kind Regards,
    Rays

    Hi Rays,
    Have you looked FM <b>VIEW_MAINTENANCE_CALL</b>?
    CALL FUNCTION 'VIEW_MAINTENANCE_CALL'
      EXPORTING
        ACTION      = 'D'
        VIEW_NAME   = 'ZTABLE'
      TABLES
        DBA_SELLIST = IT_RANGETAB
      EXCEPTIONS
        CLIENT_REFERENCE                     = 1
        FOREIGN_LOCK                         = 2
        INVALID_ACTION                       = 3
        NO_CLIENTINDEPENDENT_AUTH            = 4
        NO_DATABASE_FUNCTION                 = 5
        NO_EDITOR_FUNCTION                   = 6
        NO_SHOW_AUTH                         = 7
        NO_TVDIR_ENTRY                       = 8
        NO_UPD_AUTH                          = 9
        ONLY_SHOW_ALLOWED                    = 10
        SYSTEM_FAILURE                       = 11
        UNKNOWN_FIELD_IN_DBA_SELLIST         = 12
        VIEW_NOT_FOUND                       = 13
        MAINTENANCE_PROHIBITED               = 14
        OTHERS                               = 15.
      IF SY-SUBRC <> 0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    Hope this will help.
    Regards,
    Ferry Lianto

  • How to make Standard SRM fields as display fields on the screen

    Hi,
    I would like to make standards SRM field "PRODUCT ID" as the display field under the "BASIC DATA" tab.
    Is there any way to control the standard SRM fields on the Basic data of the SC?
    I have done it with custom fields with the BADI-BBP_CUF_BADI but it would not work for Standard SRM field.
    Thanks in advance.
    Mrudula Patel

    OK here is the solution.
    Create a Transaction variant via SHD0 Tcode
    In the transaction screen variant make the field display only.
    activate the transaction variant
    All the best.
    Let me know if any problems.
    Get me ur email id --- maybe i can you a document on how to create a screen variant and activate it.
    Message was edited by:
            Gummadi

  • How to make Manufacturer Information Available For Display in SC

    Hello,
    We would like to make the Manufacturer Part Number and External Manufacturer available for display in the shoppng cart. Also, UNSPSC for that matter.  I know these are in the shopping cart as loaded from the external catalog but have not found anywhere in the HTML templates where they could be made available by uncommenting, like we did for Unloading Point. Are there provisions in the shopping cart to show this information?
    If not, how would you accomplish this?
    Thanks in advance for any assistance.

    Hi
    We have done similar requirements in our past previous SRM implementations.
    <u>It's not possible to enable the required fields - Manufacturer part number, External Mnaufacturer, UNSPSC, etc as these are not avaibale on the Standard HTML Templates of the Internet Service - BBPSC01 (using SE80 transaction).
    You need to go for adding customer fields to the Shopping cart Item level in this case.</u>
    Refer the following OSS notes which guides you how to create customer fields on the shopping cart ->
    <b>Note 458591 - User-defined fields: Preparation and use
    Note 672960 - User-defined fields 2</b>
    Refer the following forum links, which will definitely help ->
    <b>Custom UI fields on shoping cart
    Add custom field in SC -Item Level
    Customer field integration
    Derive GL code based on UNSPSC from catalog
    Custom fields not display in SRM5.5 Basic Data Frame
    BBPSC04 Custom Fields Addition Not working
    How to chage the display name in SC browser for the custome fields?
    <u>You can use several BADIs to map the data from Shopping cart to the Back end documents (Purchase Order, Purchase Req, Requistions, etc) using these Business Add-Ins.</u>
    <b>Refer to the  BADIs using transaction - SE18.</b>
    BBP_DOC_CHANGE_BADI
    BBP_DOC_CHECK_BADI
    BBP_CREATE_PO_BACK
    BBP_CREATE_REQ_BACK
    Note -> Please read the relevant Standard BADI definition documentation, before doing any coding for the custom BADI Implementations.
    Do let me know, incase you face any issues.
    Regards
    - Atul

  • How to make HTMLPANEL have a vertical scroll bar?

    The content that I load into the panel is longer than the panel itself. How do I make the
    panel have a vertical scroll bar to contain all the data within it.

    Add
    overflow: auto;
    or
    overflow: scroll;
    to your style definition of the panel. You can also use
    overflow-y: auto;
    or
    overflow-y: scroll;
    which gives only a vertical scroll bar.
    Beth

  • How to make locked iPod Touch to display "enter passcode"?

    My niece tried to unlock my iPod several times. Now it says "iPod is disabled connect to iTunes."
    How do I make it displaying passcode screen again so that I can enter the correct passcode?

    You have to restore the iPod
    Disabled
    Place the iOS device in Recovery Mode and then connect to your computer and restore via iTunes. The iPod will be erased.
    iOS: Forgot passcode or device disabled
    If recovery mode does not work try DFU mode.                        
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings        
    For how to restore:                                                             
    iTunes: Restoring iOS software
    To restore from backup see:
    iOS: Back up and restore your iOS device with iCloud or iTunes       
    If you restore from iCloud backup the apps will be automatically downloaded. If you restore from iTunes backup the apps and music have to be in the iTunes library since synced media like apps and music are not included in the backup of the iOS device that iTunes makes.
    You can redownload most iTunes purchases by:                         
    Downloading past purchases from the App Store, iBookstore, and iTunes Store        
    If problem what happens or does not happen and when in the instructions? When you successfully get the iPod in recovery mode and connect to computer iTunes should say it found an iPod in recovery mode.

  • HOW TO MAKE PICTURE ON SCREEN VERTICAL

    The w2207 can be used horzonaly or verticaly.  I am setting up 2 screens on one computer, Dell OPTIPLEX GX620,  (windows 7 / 64-bit).  One horizontaly one vertical. I have 2 issues: First issue: Windows7 does not recognise screen 2 on control panel.  Screen 2 duplicates Screen 1.  I have a poweredsplitter to divide up the audio/video for additional screens.  Screen 1 and Screen 2 are connected to outputs. A thirdoutput is connected to a tv/monitor.  All screens have the same picture at the same time.  My guess is I would need toconnect Screen 2 by another means so the Windows7 will recognize it??  Maybe use DVI or HDMI don't know, asking? Second issue, I can mechanically rotate the screen from horizontal to vertical, but the text/picture stays horizontal.My View Sonic changes to match the screen position like a cell phone. The HP does not! NOTE:The View Sonic is 15 yrs. old.  Need to know how to match text/picture to screen position. DVO33308 

    Before doing anything, backup your current iWeb Domain file — usually located here:
    Unless someone else chips in with an alternative, I think you'll have to start a new Blog page and copy & paste.
    But bear in mind that problems with iWeb's blog are a recurring theme on these forums: Lost all blog entries or all comments or unable to publish, etc. For a success story using a non-iWeb blog hosted on WordPress, see this old thread:
    _To blog or not to blog_

  • How to make 'Overall Limit' field as display only in ME22/ME22N

    Hi,
    I want to make the 'Overall Limit' field as display only in transation ME22/ME22N (only for Service Items).
    I can make the field display only for ALL Service Items by going to:
    SPRO u2013 IMG - Material Management - External Services Management - Define Screen Layout
    and making the 'Overall Limit' display only for PT1 (Blanket Items). But this also stops any entry into this field even for creation of Purchase Orders! When I try the same thing for ME22 (Change Purchase Order) it does not work.

    Hi
    You can make it greyed out like this:
    Go to materials management -> external service management -> define screen layout -> copy field selection key ME22 -> enter new key as ME22N -> choose category of field selection to 2 -> click on value limit -> make overall limit as display.
    Then for Tcode ME22N, this field will be greyed out.
    Thanks

  • How to make an attendance monitoring system

    Hello there, I've just made a system that allows records the time in and time out of the some people. But how do you track people that didn't even check in at all? How do you know if there's a person that was supposed to be present, but didn't come and check in?
    What's the process in doing that when using java as the programming language?

    Let me elaborate on the question further. Bear in mind that this is my first attempt in making an attendance monitoring system and I feel that it has more details and processes than what it seems to be.
    What I'd like to learn are the details, such as the checks and processes that are incorporated in making an attendance monitoring system; processes or methods that allows the system to show valid information. Such as a check to prevent the person from logging in twice instead of logging in and out. Also what is the process that must be done once there is a scenario of when a person is unable to log out or forgets to log out.
    Regarding the helpful answer that it would depend on the company or the user. Thank you for that answer. But it isn't really the answer I was looking for. The attendance monitoring system is said to be an Information system. And just like many information systems it is supposed to give out factual information. What I'd like to know is the generic information that can be computed from the data that the system is able to collect, capabilities that are not only found in specific attendance monitoring systems of a single company but present in most if not all the best attendance monitoring systems. Such as possibly finding the trends for absences, tardiness depending on the season etc.
    This is my first time making such as a system, so if their is anything I haven't understood, I ask for your patience. Thank you for the answers that you people have given.

  • How do I invert my monitor's display color ?

    I was just wandering how to invert the colors on my monitor. Any help would be graetly appreciated. Thanks.

    commandcontrol+option8, or go to system prefs>universal access and choose white on black.

Maybe you are looking for

  • Error message: CONNECTION FAILURE. DOWNLOADING FAILED. IMAGE CANNOT BE LOADED. PLEASE TRY AGA

    I recently purchased Photoshop Touch for use on my Samsung Galaxy Note 10.1. I have uploaded files to Creative Cloud from CS5 version of Photoshop. I can view the file thumbnails on my tablet, but when I go to open them, I get the following error eve

  • Problem in converting value in UTF-8

    Hello experts, I have to store my textfields value in UTF-8 format. Whenever I inserted the qury write the following code for converting into UTF-8 fromat. But its store in like. e.g. बीड format for "बीड" value. I want to insert as like I am typing i

  • P2 media offline.

    I've got a project with around 1.3TB of P2 Media. A clip which was a long clip and spanned at that, was made off line and deleted from the disc. I need to get it back and I have the original .mxf on tape back up, so I have the original files availabl

  • ABAP material needed

    Hi, Can anyone send me SAMS 21 days ABAP learning book material. Thanks

  • Workcenter wise Authorization Checking in CO11N T.Code

    Hi All, In our business we have 12 operation stages in routing and total process passes through 4 depts.We have 4 SAP Logon id for these dept.We are using 4 Milestone Confirmation stages (Control Key PP03) and separate dept. confirm their stages by u