Hi,

I m try develope an application in kiosk mode, to do this i set this
properties to my form:
WindowState: Maximized;
MinimizeBox: false;
ControlBox: false;

Its work fine, but sometimes when i open an close other form, the main form
is placed under taskbar...

Any sugestion?


--
Cumprimentos,
ARMANDO ROCHA

Re: Form Maximized allways... by Manfred

Manfred
Mon Jul 14 09:44:49 CDT 2008

Move the TastBar outside your display:
MoveWindow(hWndTaskBar, 0, rtNewDesktop.bottom, (rtTaskBar.right -
rtTaskBar.left), (rtTaskBar.bottom - rtTaskBar.top), 0);

Look here:
http://www.codeproject.com/KB/mobile/netfullscreen.aspx

For C#-Code, scroll down to the user comment "the code in C#". It
works very well :-)

Greetings Manfred

Re: Form Maximized allways... by Pete

Pete
Tue Jul 15 02:01:23 CDT 2008

Have a look at Video #53 How Do I: Hide Standard Device UI Elements in a
.NET Compact Framework Application?
at How do I? videos at
http://msdn.microsoft.com/en-us/netframework/bb495180.aspx

Pete


"A.Rocha" <armandorocha@ifthensoftware.com> wrote in message
news:28395137-5DC0-48E5-B3A0-9C5BE852F356@microsoft.com...
> Hi,
>
> I m try develope an application in kiosk mode, to do this i set this
> properties to my form:
> WindowState: Maximized;
> MinimizeBox: false;
> ControlBox: false;
>
> Its work fine, but sometimes when i open an close other form, the main
> form is placed under taskbar...
>
> Any sugestion?
>
>
> --
> Cumprimentos,
> ARMANDO ROCHA