How do I determine what screen my application is running on?
The System.Windows.Forms.Screen class provides this functionaility.
For example:
Screen s = Screen.FromPoint(p);
where p is a Point somewhere on your application (in screen coordinates).