J JustMe Oct 17, 2003 #1 I'm able to hide/remove the menu, but I'm not able to hide/remove the toolbar off of my form at runtime. Any suggestions? --Terry
I'm able to hide/remove the menu, but I'm not able to hide/remove the toolbar off of my form at runtime. Any suggestions? --Terry
I Ibai Peña Oct 17, 2003 #3 Sorry, I haven´t read properly. for fullscreen app, just hide the menu, and then set the window as maximized: this.Menu = null; this.WindowState = FormWindowState.Maximized; I have read that on version 1.0 of the .NET CF, you must change the WindowState property inside the Form's Load event.
Sorry, I haven´t read properly. for fullscreen app, just hide the menu, and then set the window as maximized: this.Menu = null; this.WindowState = FormWindowState.Maximized; I have read that on version 1.0 of the .NET CF, you must change the WindowState property inside the Form's Load event.