机上装两个显卡,接两台显示器,
要求不同输出,
如何编程控制显卡?

解决方案 »

  1.   

    delphi中的, 操作
    screen.Monitors[]就可
      

  2.   

    TO: ksaiy(消失在人海)
      我的显卡也是如此,WinFast A180 DDR,支持双屏显示,
    但另外一个口只能接电视机呀?
      

  3.   

    screen.Monitors[]
    具体怎样操作呀?
      

  4.   

    根據 screen.Monitors[0] , screen.Monitors[1] 的參數, 定位不同的顯示到不同的屏幕上
      

  5.   

    在有双显卡时
    如果monitor1 800*600
        monitor2 800*600
        monitor1 --main
        
        form.left:>800就可以在monitor2显示了
    你看看下面的代码:
    Form1.SetBounds(Screen.Monitors[I].Left + ((Screen.Monitors[I].Width - Width) div 2),
              Screen.Monitors[I].Top + ((Screen.Monitors[I].Height - Height) div 2),
              Width, Height)