Help - How to position application on dual screen monitor?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How do you position an application called from VB.NET onto the second screen
on a dual screen system. I have the code to launch the application, but
cannot figure out how to position the application window on the screen.
Would be nice if the location remained the same even if the user changed the
screen resolution also...
Any help would be appreciated.
 
I can't test it since i don't have a dual monitor setup, but you could use
the System.Windows.Forms.Screen class to get the bounds of the second screen
and then position your form in those bounds.
 
Back
Top