Hey

I'm working with a multi monitor setup. I know that you can do Screen.AllScreens(x) to get a specific screen, but is there any way to identify which screen is in which position?

I.E.

Screen 0 is on the right, screen 1 is on the left, screen 2 is in the middle

I'm trying to position one form at the top left of each screen, and the only way i can think to do this is something like

Code:
Me.Location = New Point(-Screen.AllScreens(1).Bounds.Width, Screen.AllScreens(1).Bounds.Top)
(That is assuming that screen 1 is on the left)

Any help?