I have an application which runs on a single monitor. It has grids in that. Say for example if the application can hold 3 girds and there are 4 items to be placed, the 4th item should go to the second screen. Algo: Check for grid size if grid size is more than 3 open the remaining in the second(dual) screen.

Please let me know how to go about this.

link|improve this question

Why not just make the form wider? – Nico Jul 27 '11 at 13:50
feedback

2 Answers

up vote 1 down vote accepted

http://msdn.microsoft.com/de-de/library/system.windows.forms.screen.allscreens.aspx

void showOnMonitor(int showOnMonitor) 
{ 
  Screen[] sc; 
  sc = Screen.AllScreens; 
  //get all the screen width and heights 
  Form2 f = new Form2(); 
  f.FormBorderStyle = FormBorderStyle.None; 
  f.Left = sc[showOnMonitor].Bounds.Width; 
  f.Top = sc[showOnMonitor].Bounds.Height; 
  f.StartPosition = FormStartPosition.Manual; 
  f.Show(); 
}
link|improve this answer
Could you translate it to C# please? Thanks! – Nico Jul 27 '11 at 13:41
I suppose this just switches from 1 monitor to the other. What I need is to extend the form. I mean I have the form already running on the first screen. I want it to extend(maximize) it on to the second screen too. – Vinay Jul 27 '11 at 13:47
Sorry, just remove that "function". With the System.Windows.Forms.Screen[] you should have all you need. Just look at the msdn article. – Destructor Jul 27 '11 at 13:48
With the sc[showOnMonitor].Bounds.Width you can set the size of your form to the width of screen1.width + screen2.width – Destructor Jul 27 '11 at 13:50
Yes, this should work. – Nico Jul 27 '11 at 13:53
show 1 more comment
feedback

Inspect type System.Windows.Forms.Screen.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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