vote up 1 vote down star
1

Hi,

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 programmatly to second monitor?

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

Thx. FS

flag

1 Answer

vote up 0 vote down

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

link|flag
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. – Fermin Apr 28 at 10:59

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.