Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 VB 2008 中,我使用“进程”类来启动和使用一些参数的外部应用程序。有谁知道我如何以编程方式将其发送到第二台显示器?
另外,有没有办法知道有多少显示器被激活?
谢谢。
您可以在不同的屏幕上找到您的表单。
form.Location = Screen.AllScreens(1).Bounds.Location + new Point(100, 100)
启动应用程序时,使用进程句柄获取窗口 (hWnd)。Windows API 使用的就是这个 hWnd 值。
您将需要使用从 User32.dll 导入的 SetWindowRect 方法(参见最后一个链接)
也可以看看