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

How do u Configure a Full Screen? by Rob

Rob
Fri Dec 19 12:10:22 CST 2003

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 (rhinton@data-nexus.com).

Rob
>-----Original Message-----
>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
>
>
>.
>

How do u Configure a Full Screen? by Mark

Mark
Fri Dec 19 12:13:18 CST 2003

Please search the NGs before posting....
http://groups.google.com/groups?hl=en&lr=&ie=UTF-8&oe=UTF-
8&q=fullscreen&meta=group%
3Dmicrosoft.public.dotnet.framework.compactframework


>-----Original Message-----
>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
>
>
>.
>