Rectangle r = Screen.GetBounds(this); this.Location = new Point(0, 0); this.Size = r.Size;
which does nothing, but seems to be the only reference I can find out there. Is this even possible? Any suggestions/help are appreciated. Thanks!




Posted 16 November 2010 - 09:47 AM
Rectangle r = Screen.GetBounds(this); this.Location = new Point(0, 0); this.Size = r.Size;
Posted 16 November 2010 - 10:24 AM
this.WindowState = FormWindowState.Maximized;
Posted 16 November 2010 - 10:40 AM
Posted 16 November 2010 - 10:50 AM
Posted 16 November 2010 - 10:55 AM
Posted 16 November 2010 - 02:48 PM
// section one
this.Width = Screen.PrimaryScreen.Bounds.Width;
this.Height = Screen.PrimaryScreen.Bounds.Height;
// section two
this.Width = Screen.PrimaryScreen.WorkingArea.Width;
this.Height = Screen.PrimaryScreen.WorkingArea.Height;
// location
this.Location = new Point(0, 0);
Posted 16 November 2010 - 02:59 PM
|
|
Query failed: connection to localhost:3312 failed (errno=111, msg=Connection refused).
|
