K Kerem Gümrükcü Nov 29, 2007 #2 Hi Kevin, How can I make that my application run in full screen mode? Click to expand... if (this.FormBorderStyle != FormBorderStyle.None && this.WindowState != FormWindowState.Maximized) { this.FormBorderStyle = FormBorderStyle.None; this.WindowState = FormWindowState.Maximized; } else { this.FormBorderStyle = FormBorderStyle.Sizable; this.WindowState = FormWindowState.Normal; } just to give you an example,... Regards Kerem --
Hi Kevin, How can I make that my application run in full screen mode? Click to expand... if (this.FormBorderStyle != FormBorderStyle.None && this.WindowState != FormWindowState.Maximized) { this.FormBorderStyle = FormBorderStyle.None; this.WindowState = FormWindowState.Maximized; } else { this.FormBorderStyle = FormBorderStyle.Sizable; this.WindowState = FormWindowState.Normal; } just to give you an example,... Regards Kerem --
J John Timney \(MVP\) Nov 29, 2007 #3 if its a winforms app try this http://www.vesic.org/english/blog/winforms/full-screen-maximize/ if its a web app, use javascript <script language="javascript"> window.moveTo(0,0); window.resizeTo(screen.availWidth, screen.availHeight); </script> Regards John Timney (MVP) http://www.johntimney.com http://www.johntimney.com/blog
if its a winforms app try this http://www.vesic.org/english/blog/winforms/full-screen-maximize/ if its a web app, use javascript <script language="javascript"> window.moveTo(0,0); window.resizeTo(screen.availWidth, screen.availHeight); </script> Regards John Timney (MVP) http://www.johntimney.com http://www.johntimney.com/blog
K Kerem Gümrükcü Nov 29, 2007 #4 Hi John, if its a web app, use javascript <script language="javascript"> window.moveTo(0,0); window.resizeTo(screen.availWidth, screen.availHeight); </script> Click to expand... DOW!....Webapps as fullscreen,...always sound very strange for me....having a html page covering the entire surface of my Display,....horrible! ;-) But what to say,...if he likes that or someone expects this. Makes some sense for WinForms,...but not for webaps. I never liked that! Regards Kerem --
Hi John, if its a web app, use javascript <script language="javascript"> window.moveTo(0,0); window.resizeTo(screen.availWidth, screen.availHeight); </script> Click to expand... DOW!....Webapps as fullscreen,...always sound very strange for me....having a html page covering the entire surface of my Display,....horrible! ;-) But what to say,...if he likes that or someone expects this. Makes some sense for WinForms,...but not for webaps. I never liked that! Regards Kerem --
J John Timney \(MVP\) Nov 29, 2007 #5 No - very frowned on practice. The only instance I would recommend it is in public kiosks.. Regards John Timney (MVP) http://www.johntimney.com http://www.johntimney.com/blog
No - very frowned on practice. The only instance I would recommend it is in public kiosks.. Regards John Timney (MVP) http://www.johntimney.com http://www.johntimney.com/blog