有人知道关于双屏显示的问题吗?(100分)

  • 主题发起人 主题发起人 carnation
  • 开始时间 开始时间
C

carnation

Unregistered / Unconfirmed
GUEST, unregistred user!
就是两块显卡接两个显示器,

我在一个显示器中显示我的程序,当按某个按钮时,在两个显示器中有不同的显示
(比如主显示器显示一个新的窗口,从显示器显示一副图)

有谁有这方面的资料??
分不够还可以再加,谢谢
Help!!
 
老帖子里有的

http://www.delphibbs.com/delphibbs/DispQ.asp?LID=168435
 
来自hubdog的答案
procedure SetWindowToMonitor(Form: TCustomForm;
//你想操作的窗体
MonitorIndex, //你想要显示窗体的显示
// 器索引, 0为主显示
// 器,1为第二显示器
Left, Top: Integer //窗体在显示器上的位置
);
begin

if not Assigned(Form) then
Exit;
if MonitorIndex >= Screen.MonitorCount then
Exit;
with Screendo

begin

Inc(Left, Monitors[MonitorIndex].Left);
Inc(Top, Monitors[MonitorIndex].Top);
end;

Form.SetBounds(Left, Top, Form.Width, Form.Height);
end;
 
去看TScreen类帮助...
 
比较高深的问题,没试过双屏!!
听听高手。。。。。
 
多人接受答案了。
 
后退
顶部