How do u Configure a Full Screen?

  • Thread starter Thread starter Paul
  • Start date Start date
P

Paul

Hi,

How do u configure a full screen that does no have a menu bar with keyboard
selection and no start bar with title and time?

I've managed tofiddle with form properties to remove the keyboard input
method but not the start menu and time.

Thanks,





Thanks,

Paul
 
You may get rid of the Main Menu by deleting the componet
in the form designer (Main Menu is automaticall added to a
new form). Try this to get rid of the Start Bar:
//C#
this.WindowState = FormWindowState.Maximized;
this.FormBorderStyle = FormBorderStyle.None;
this.ControlBox = false;
this.Menu = null;

'VB
Me.WindowState = FormWindowState.Maximized
Me.FormBorderStyle = FormBorderStyle.None
Me.ControlBox = False
Me.Menu = Nothing

I got it this answer from
http://msdn.microsoft.com/mobility/prodtechinfo/devtools/ne
tcf/faq/default.aspx#4.1

I am working on similar functionality. You can email me if
you have further questions ([email protected]).

Rob
 
Back
Top