Multiple Monitors? Toughy?

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

Guest

Not sure if this is simple or hard, but I will simplify what I am trying to do.

I want to display images on two different monitors. One fullscreen on the 2nd monitor, and one not fullscreen on the first monitor. How would I go about doing this? Using the screen class somehow?
 
Hi Jordan,

Jordan Wright said:
Not sure if this is simple or hard, but I will simplify what I am trying
to do.

I want to display images on two different monitors. One fullscreen on the
2nd monitor, and one not fullscreen on the first monitor. How would I go
about doing this? Using the screen class somehow?

This tutorial describes the use of the win32 api (in mfc/c++):
http://www.codeproject.com/gdi/multimon.asp

If you head over to http://www.pinvoke.net/ and search up the different
API calls that is described here:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/gdi/monitor_53sj.asp ,
it should be "quite" easy to wire up something similar in C# with the help
of P/Invoke (DllImport).
 
Back
Top