Launch an application and send it to second monitor
Asked Answered
C

1

3

In VB 2008, I am using the class 'process' to launch and external application with a few parameters. Does anybody knows how can I send it programmatically to second monitor?

Also, is there any way to know how many monitors are activated?

Thanks.

Chinaware answered 28/4, 2009 at 10:5 Comment(1)
possible duplicate of c# Launch an application and send it to second monitor?Parthia
P
-2

You can locate your form on a different screen.

form.Location = Screen.AllScreens(1).Bounds.Location + new Point(100, 100)

When you launch an application, use the Process Handle to get the Window (hWnd). It's this hWnd value that windows API uses.

You will need to use the SetWindowRect method imported from User32.dll (see last link)

See also

Prakash answered 28/4, 2009 at 10:14 Comment(1)
Well, I know I can move a form of my application, but what I want to know is how to move the application launched by my program.Chinaware

© 2022 - 2024 — McMap. All rights reserved.