<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: How to make Windows Form app truly Full Screen (and to hide Taskbar) in C#?</title>
	<atom:link href="http://www.vesic.org/english/blog/winforms/full-screen-maximize/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.vesic.org/english/blog/winforms/full-screen-maximize/</link>
	<description>dotNet, ASP.Net, Programming, Software ...</description>
	<lastBuildDate>Mon, 01 Mar 2010 11:47:30 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Morgan</title>
		<link>http://www.vesic.org/english/blog/winforms/full-screen-maximize/comment-page-1/#comment-15370</link>
		<dc:creator>Morgan</dc:creator>
		<pubDate>Thu, 28 Jan 2010 18:15:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.vesic.org/english/blog/winforms/full-screen-maximize/#comment-15370</guid>
		<description>it does not work, I can not paste the code or download the code without error or missing files</description>
		<content:encoded><![CDATA[<p>it does not work, I can not paste the code or download the code without error or missing files</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: RossC</title>
		<link>http://www.vesic.org/english/blog/winforms/full-screen-maximize/comment-page-1/#comment-15348</link>
		<dc:creator>RossC</dc:creator>
		<pubDate>Thu, 29 Oct 2009 12:14:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.vesic.org/english/blog/winforms/full-screen-maximize/#comment-15348</guid>
		<description>Another message of thanks! Nice article.</description>
		<content:encoded><![CDATA[<p>Another message of thanks! Nice article.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dziq</title>
		<link>http://www.vesic.org/english/blog/winforms/full-screen-maximize/comment-page-1/#comment-15031</link>
		<dc:creator>dziq</dc:creator>
		<pubDate>Wed, 07 Oct 2009 14:07:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.vesic.org/english/blog/winforms/full-screen-maximize/#comment-15031</guid>
		<description>I will change
private static IntPtr HWND_TOP = IntPtr.Zero;
to
private static IntPtr HWND_NOTOPMOST = new IntPtr(-2);
if you want to use other windows (Alt+Tab)</description>
		<content:encoded><![CDATA[<p>I will change<br />
private static IntPtr HWND_TOP = IntPtr.Zero;<br />
to<br />
private static IntPtr HWND_NOTOPMOST = new IntPtr(-2);<br />
if you want to use other windows (Alt+Tab)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dejan Vesić</title>
		<link>http://www.vesic.org/english/blog/winforms/full-screen-maximize/comment-page-1/#comment-14155</link>
		<dc:creator>Dejan Vesić</dc:creator>
		<pubDate>Tue, 30 Jun 2009 22:00:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.vesic.org/english/blog/winforms/full-screen-maximize/#comment-14155</guid>
		<description>@ Glenn: in order to prevent CTRL + ESC (or any other standard Windows keys for that matter) I would use:

&lt;a href=&quot;http://msdn.microsoft.com/en-us/library/system.windows.forms.application.addmessagefilter.aspx&quot; rel=&quot;nofollow&quot;&gt;Application.AddMessageFilter&lt;/a&gt; and appropriate implementation of &lt;a href=&quot;http://msdn.microsoft.com/en-us/library/system.windows.forms.imessagefilter.aspx&quot; rel=&quot;nofollow&quot;&gt;IMessageFilter&lt;/a&gt;.

Than just from PreFilterMessage return true for combinations you want to be excluded from processing.</description>
		<content:encoded><![CDATA[<p>@ Glenn: in order to prevent CTRL + ESC (or any other standard Windows keys for that matter) I would use:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.application.addmessagefilter.aspx" rel="nofollow">Application.AddMessageFilter</a> and appropriate implementation of <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.imessagefilter.aspx" rel="nofollow">IMessageFilter</a>.</p>
<p>Than just from PreFilterMessage return true for combinations you want to be excluded from processing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pamkkkkk</title>
		<link>http://www.vesic.org/english/blog/winforms/full-screen-maximize/comment-page-1/#comment-13607</link>
		<dc:creator>pamkkkkk</dc:creator>
		<pubDate>Mon, 20 Apr 2009 13:30:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.vesic.org/english/blog/winforms/full-screen-maximize/#comment-13607</guid>
		<description>Hi nice solution !

Iuse the following code.

I foud out that the order of commands are importend ! (if you change it want work correct!)

matches this your solution?? please try!

public New() // Formconstructor
{
	// if FormStartPosition.Manual is not set, then you can´t set the Form Location !!!
	// see msdn documentation
	this.StartPosition = FormStartPosition.Manual;

	// Set the Form to VirtualScreen (FullScreen)
	this.Location = SystemInformation.VirtualScreen.Location;
	this.Size = SystemInformation.VirtualScreen.Size;
	this.ClientSize = SystemInformation.VirtualScreen.Size;

	//maximize The Window to FullScreen without Borders and Titelbar
	// erase WindowBorder
	this.FormBorderStyle = Windows.Forms.FormBorderStyle.None;
	// Set Window to Topmost
	this.TopMost = true;
}</description>
		<content:encoded><![CDATA[<p>Hi nice solution !</p>
<p>Iuse the following code.</p>
<p>I foud out that the order of commands are importend ! (if you change it want work correct!)</p>
<p>matches this your solution?? please try!</p>
<p>public New() // Formconstructor<br />
{<br />
	// if FormStartPosition.Manual is not set, then you can´t set the Form Location !!!<br />
	// see msdn documentation<br />
	this.StartPosition = FormStartPosition.Manual;</p>
<p>	// Set the Form to VirtualScreen (FullScreen)<br />
	this.Location = SystemInformation.VirtualScreen.Location;<br />
	this.Size = SystemInformation.VirtualScreen.Size;<br />
	this.ClientSize = SystemInformation.VirtualScreen.Size;</p>
<p>	//maximize The Window to FullScreen without Borders and Titelbar<br />
	// erase WindowBorder<br />
	this.FormBorderStyle = Windows.Forms.FormBorderStyle.None;<br />
	// Set Window to Topmost<br />
	this.TopMost = true;<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SREEKESH</title>
		<link>http://www.vesic.org/english/blog/winforms/full-screen-maximize/comment-page-1/#comment-13604</link>
		<dc:creator>SREEKESH</dc:creator>
		<pubDate>Mon, 20 Apr 2009 08:03:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.vesic.org/english/blog/winforms/full-screen-maximize/#comment-13604</guid>
		<description>Very Nice Article. Gr8 Job</description>
		<content:encoded><![CDATA[<p>Very Nice Article. Gr8 Job</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dejan Vesić</title>
		<link>http://www.vesic.org/english/blog/winforms/full-screen-maximize/comment-page-1/#comment-13576</link>
		<dc:creator>Dejan Vesić</dc:creator>
		<pubDate>Wed, 15 Apr 2009 22:11:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.vesic.org/english/blog/winforms/full-screen-maximize/#comment-13576</guid>
		<description>You are welcome :)</description>
		<content:encoded><![CDATA[<p>You are welcome <img src='http://www.vesic.org/english/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dan</title>
		<link>http://www.vesic.org/english/blog/winforms/full-screen-maximize/comment-page-1/#comment-13574</link>
		<dc:creator>dan</dc:creator>
		<pubDate>Wed, 15 Apr 2009 17:51:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.vesic.org/english/blog/winforms/full-screen-maximize/#comment-13574</guid>
		<description>Thanks a lot! I need a solution like this for visual basic (not C#) and with a little translation it worked like a champ.</description>
		<content:encoded><![CDATA[<p>Thanks a lot! I need a solution like this for visual basic (not C#) and with a little translation it worked like a champ.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lateef Ahmed</title>
		<link>http://www.vesic.org/english/blog/winforms/full-screen-maximize/comment-page-1/#comment-13440</link>
		<dc:creator>Lateef Ahmed</dc:creator>
		<pubDate>Mon, 30 Mar 2009 06:50:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.vesic.org/english/blog/winforms/full-screen-maximize/#comment-13440</guid>
		<description>Your class works like charm. 

Thanks for the help.</description>
		<content:encoded><![CDATA[<p>Your class works like charm. </p>
<p>Thanks for the help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Glenn</title>
		<link>http://www.vesic.org/english/blog/winforms/full-screen-maximize/comment-page-1/#comment-13117</link>
		<dc:creator>Glenn</dc:creator>
		<pubDate>Fri, 27 Feb 2009 06:49:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.vesic.org/english/blog/winforms/full-screen-maximize/#comment-13117</guid>
		<description>How to prevent Ctrl + ESC show on the top of the full screen app?</description>
		<content:encoded><![CDATA[<p>How to prevent Ctrl + ESC show on the top of the full screen app?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Naseem</title>
		<link>http://www.vesic.org/english/blog/winforms/full-screen-maximize/comment-page-1/#comment-13049</link>
		<dc:creator>Naseem</dc:creator>
		<pubDate>Thu, 19 Feb 2009 20:59:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.vesic.org/english/blog/winforms/full-screen-maximize/#comment-13049</guid>
		<description>thank you</description>
		<content:encoded><![CDATA[<p>thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dejan Vesić</title>
		<link>http://www.vesic.org/english/blog/winforms/full-screen-maximize/comment-page-1/#comment-12252</link>
		<dc:creator>Dejan Vesić</dc:creator>
		<pubDate>Sat, 27 Dec 2008 07:57:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.vesic.org/english/blog/winforms/full-screen-maximize/#comment-12252</guid>
		<description>You are welcome.</description>
		<content:encoded><![CDATA[<p>You are welcome.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vijay Daniel M</title>
		<link>http://www.vesic.org/english/blog/winforms/full-screen-maximize/comment-page-1/#comment-12248</link>
		<dc:creator>Vijay Daniel M</dc:creator>
		<pubDate>Sat, 27 Dec 2008 06:37:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.vesic.org/english/blog/winforms/full-screen-maximize/#comment-12248</guid>
		<description>Very nice.. Been very helpful.. Keep up the good work. Thank you</description>
		<content:encoded><![CDATA[<p>Very nice.. Been very helpful.. Keep up the good work. Thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: thomas.speaking &#124; How to make a Windows Form Full Screen in C#?</title>
		<link>http://www.vesic.org/english/blog/winforms/full-screen-maximize/comment-page-1/#comment-11609</link>
		<dc:creator>thomas.speaking &#124; How to make a Windows Form Full Screen in C#?</dc:creator>
		<pubDate>Sat, 29 Nov 2008 14:18:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.vesic.org/english/blog/winforms/full-screen-maximize/#comment-11609</guid>
		<description>[...] Momenteel ben ik bezig met het uitzoeken hoe ik het programma fullscreen kan laten werken zoals in een Powerpoint-presentatie (en dus ook de taakbalk wegwerken). De oplossing is te vinden op www.vesic.org! [...]</description>
		<content:encoded><![CDATA[<p>[...] Momenteel ben ik bezig met het uitzoeken hoe ik het programma fullscreen kan laten werken zoals in een Powerpoint-presentatie (en dus ook de taakbalk wegwerken). De oplossing is te vinden op <a href="http://www.vesic.org" rel="nofollow">http://www.vesic.org</a>! [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dejan Vesić</title>
		<link>http://www.vesic.org/english/blog/winforms/full-screen-maximize/comment-page-1/#comment-8084</link>
		<dc:creator>Dejan Vesić</dc:creator>
		<pubDate>Wed, 02 Jul 2008 18:18:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.vesic.org/english/blog/winforms/full-screen-maximize/#comment-8084</guid>
		<description>I do not see problems with performance; once set, no other performance losses should be noticed.</description>
		<content:encoded><![CDATA[<p>I do not see problems with performance; once set, no other performance losses should be noticed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kevin</title>
		<link>http://www.vesic.org/english/blog/winforms/full-screen-maximize/comment-page-1/#comment-8066</link>
		<dc:creator>Kevin</dc:creator>
		<pubDate>Tue, 01 Jul 2008 13:41:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.vesic.org/english/blog/winforms/full-screen-maximize/#comment-8066</guid>
		<description>What does this solution do to the performence??
I&#039;m thinking of using this but I can also let the user set the taskbar to auto hide it.</description>
		<content:encoded><![CDATA[<p>What does this solution do to the performence??<br />
I&#8217;m thinking of using this but I can also let the user set the taskbar to auto hide it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dejan Vesić</title>
		<link>http://www.vesic.org/english/blog/winforms/full-screen-maximize/comment-page-1/#comment-7167</link>
		<dc:creator>Dejan Vesić</dc:creator>
		<pubDate>Sun, 04 May 2008 17:47:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.vesic.org/english/blog/winforms/full-screen-maximize/#comment-7167</guid>
		<description>Thanks :-)</description>
		<content:encoded><![CDATA[<p>Thanks <img src='http://www.vesic.org/english/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tommy</title>
		<link>http://www.vesic.org/english/blog/winforms/full-screen-maximize/comment-page-1/#comment-7135</link>
		<dc:creator>Tommy</dc:creator>
		<pubDate>Wed, 30 Apr 2008 10:23:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.vesic.org/english/blog/winforms/full-screen-maximize/#comment-7135</guid>
		<description>Hi Dejan,
Thanks a lot for your suggestion.  I&#039;ll give it a try.  BTW, great article.</description>
		<content:encoded><![CDATA[<p>Hi Dejan,<br />
Thanks a lot for your suggestion.  I&#8217;ll give it a try.  BTW, great article.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dejan Vesić</title>
		<link>http://www.vesic.org/english/blog/winforms/full-screen-maximize/comment-page-1/#comment-7008</link>
		<dc:creator>Dejan Vesić</dc:creator>
		<pubDate>Wed, 16 Apr 2008 05:49:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.vesic.org/english/blog/winforms/full-screen-maximize/#comment-7008</guid>
		<description>I do not know how to do that from top of my head, but if you can (have access to machine and rights to change Registry), you can replace user&#039;s standard shell application (explorer.exe) with your application and take over all of control.

(look for example here: &lt;a href=&quot;http://support.microsoft.com/kb/143164&quot; rel=&quot;nofollow&quot;&gt;http://support.microsoft.com/kb/143164&lt;/a&gt;)

However, this is rather dangerous technique and suggest to test it a lot (using for example Virtual PC) before releasing it as a general solution.</description>
		<content:encoded><![CDATA[<p>I do not know how to do that from top of my head, but if you can (have access to machine and rights to change Registry), you can replace user&#8217;s standard shell application (explorer.exe) with your application and take over all of control.</p>
<p>(look for example here: <a href="http://support.microsoft.com/kb/143164" rel="nofollow">http://support.microsoft.com/kb/143164</a>)</p>
<p>However, this is rather dangerous technique and suggest to test it a lot (using for example Virtual PC) before releasing it as a general solution.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tommy</title>
		<link>http://www.vesic.org/english/blog/winforms/full-screen-maximize/comment-page-1/#comment-7007</link>
		<dc:creator>Tommy</dc:creator>
		<pubDate>Wed, 16 Apr 2008 05:19:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.vesic.org/english/blog/winforms/full-screen-maximize/#comment-7007</guid>
		<description>This technique doesn&#039;t prevent the user from accessing the taskbar by pressing (Control + Escape) or pressing on the Windows button on the keyboard.  Is there anyway of prevent the users from accessing the taskbar **at all**?  The user shouldn&#039;t be allow to exit your application to run other apps.  Any idea?</description>
		<content:encoded><![CDATA[<p>This technique doesn&#8217;t prevent the user from accessing the taskbar by pressing (Control + Escape) or pressing on the Windows button on the keyboard.  Is there anyway of prevent the users from accessing the taskbar **at all**?  The user shouldn&#8217;t be allow to exit your application to run other apps.  Any idea?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dejan Vesić</title>
		<link>http://www.vesic.org/english/blog/winforms/full-screen-maximize/comment-page-1/#comment-5357</link>
		<dc:creator>Dejan Vesić</dc:creator>
		<pubDate>Mon, 08 Oct 2007 13:39:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.vesic.org/english/blog/winforms/full-screen-maximize/#comment-5357</guid>
		<description>This is standard Windows Library, and should exist on each machine. You just add reference to it.

Regards,
Dejan</description>
		<content:encoded><![CDATA[<p>This is standard Windows Library, and should exist on each machine. You just add reference to it.</p>
<p>Regards,<br />
Dejan</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Francesco</title>
		<link>http://www.vesic.org/english/blog/winforms/full-screen-maximize/comment-page-1/#comment-5356</link>
		<dc:creator>Francesco</dc:creator>
		<pubDate>Mon, 08 Oct 2007 12:46:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.vesic.org/english/blog/winforms/full-screen-maximize/#comment-5356</guid>
		<description>I can&#039;t find the user32.dll in my VisualStudio APIs. I&#039;ve downloaded it but I can&#039;t add this library as reference so I try to put it in the folder of my DeviceApplication but it doesn&#039;t work..Could someone help me?</description>
		<content:encoded><![CDATA[<p>I can&#8217;t find the user32.dll in my VisualStudio APIs. I&#8217;ve downloaded it but I can&#8217;t add this library as reference so I try to put it in the folder of my DeviceApplication but it doesn&#8217;t work..Could someone help me?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dejan Vesić</title>
		<link>http://www.vesic.org/english/blog/winforms/full-screen-maximize/comment-page-1/#comment-4601</link>
		<dc:creator>Dejan Vesić</dc:creator>
		<pubDate>Wed, 01 Aug 2007 10:16:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.vesic.org/english/blog/winforms/full-screen-maximize/#comment-4601</guid>
		<description>I am not aware of possibility to do so. You can make parent (container) form full screen, but I failed to do same for child forms in MDI form.</description>
		<content:encoded><![CDATA[<p>I am not aware of possibility to do so. You can make parent (container) form full screen, but I failed to do same for child forms in MDI form.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vachan</title>
		<link>http://www.vesic.org/english/blog/winforms/full-screen-maximize/comment-page-1/#comment-4451</link>
		<dc:creator>Vachan</dc:creator>
		<pubDate>Tue, 10 Jul 2007 06:00:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.vesic.org/english/blog/winforms/full-screen-maximize/#comment-4451</guid>
		<description>This is very Good Article.
But if i had open-up my form within MDI.
SO, Is it possible to remove form border or control box from target open-up form ?</description>
		<content:encoded><![CDATA[<p>This is very Good Article.<br />
But if i had open-up my form within MDI.<br />
SO, Is it possible to remove form border or control box from target open-up form ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dejan Vesić</title>
		<link>http://www.vesic.org/english/blog/winforms/full-screen-maximize/comment-page-1/#comment-4140</link>
		<dc:creator>Dejan Vesić</dc:creator>
		<pubDate>Thu, 07 Jun 2007 08:37:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.vesic.org/english/blog/winforms/full-screen-maximize/#comment-4140</guid>
		<description>This is contradiction for this post :-)

There is no way (IMHO) that you can force Taskbar over ANY application - if this is possible, that means than there will be no full screen application.</description>
		<content:encoded><![CDATA[<p>This is contradiction for this post <img src='http://www.vesic.org/english/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>There is no way (IMHO) that you can force Taskbar over ANY application &#8211; if this is possible, that means than there will be no full screen application.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Weston</title>
		<link>http://www.vesic.org/english/blog/winforms/full-screen-maximize/comment-page-1/#comment-3136</link>
		<dc:creator>Weston</dc:creator>
		<pubDate>Sun, 27 May 2007 14:51:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.vesic.org/english/blog/winforms/full-screen-maximize/#comment-3136</guid>
		<description>hey,

i was wondering if you could tell me a way to keep the taskbar on top of the full screen program. The &quot;keep task bar on top&quot; is checked but it still doesn&#039;t keep it on top of the full screen program. thanks</description>
		<content:encoded><![CDATA[<p>hey,</p>
<p>i was wondering if you could tell me a way to keep the taskbar on top of the full screen program. The &#8220;keep task bar on top&#8221; is checked but it still doesn&#8217;t keep it on top of the full screen program. thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dimitris</title>
		<link>http://www.vesic.org/english/blog/winforms/full-screen-maximize/comment-page-1/#comment-2788</link>
		<dc:creator>Dimitris</dc:creator>
		<pubDate>Tue, 15 May 2007 15:35:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.vesic.org/english/blog/winforms/full-screen-maximize/#comment-2788</guid>
		<description>This workaround (and all the others that i found on net) has a problem. 

I tried this on an MDI app with a toolstrip menu. When the task bar is not on the bottom of the screen, the toolstrip menus that are above the hidden taskbar show on wrong position. They show at the end of the taskbar. Just like if the taskbar was still there !!!

Haven&#039;t found a solution yet.</description>
		<content:encoded><![CDATA[<p>This workaround (and all the others that i found on net) has a problem. </p>
<p>I tried this on an MDI app with a toolstrip menu. When the task bar is not on the bottom of the screen, the toolstrip menus that are above the hidden taskbar show on wrong position. They show at the end of the taskbar. Just like if the taskbar was still there !!!</p>
<p>Haven&#8217;t found a solution yet.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ripal</title>
		<link>http://www.vesic.org/english/blog/winforms/full-screen-maximize/comment-page-1/#comment-701</link>
		<dc:creator>ripal</dc:creator>
		<pubDate>Mon, 19 Mar 2007 08:55:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.vesic.org/english/blog/winforms/full-screen-maximize/#comment-701</guid>
		<description>hello !! it is so helpful and it is working also but i have problem that when i click on fullscreen button on  my screen  many flickring is there and after some time it will be give result as fullscreen</description>
		<content:encoded><![CDATA[<p>hello !! it is so helpful and it is working also but i have problem that when i click on fullscreen button on  my screen  many flickring is there and after some time it will be give result as fullscreen</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ashvin Gunga</title>
		<link>http://www.vesic.org/english/blog/winforms/full-screen-maximize/comment-page-1/#comment-449</link>
		<dc:creator>Ashvin Gunga</dc:creator>
		<pubDate>Thu, 22 Feb 2007 11:36:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.vesic.org/english/blog/winforms/full-screen-maximize/#comment-449</guid>
		<description>Hi,

I have already worked on the problem I was getting. It&#039;s fixed. Thanks.

Ashvin</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I have already worked on the problem I was getting. It&#8217;s fixed. Thanks.</p>
<p>Ashvin</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ashvin Gunga</title>
		<link>http://www.vesic.org/english/blog/winforms/full-screen-maximize/comment-page-1/#comment-446</link>
		<dc:creator>Ashvin Gunga</dc:creator>
		<pubDate>Thu, 22 Feb 2007 06:09:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.vesic.org/english/blog/winforms/full-screen-maximize/#comment-446</guid>
		<description>Hi Alex,

I tried the way you suggested on a Windows Mobile Ce 5.0. I have set the FormBorStyle to None and set Location to 0,0. In the load event handler, I have set the size to Bounds.Size or WorkingArea.Size...but it doesn&#039;t solve my problem. First, the task bar is still showing and secondly, I don&#039;t have the title bar.

Do you have any solution so that I can have a form in a Windows Mobile Ce 5.0 c# application to take the screen space completely (even the task bar space) and have the title bar of the screen and also, the screen should not be movable.

Thanks.

Ashvin</description>
		<content:encoded><![CDATA[<p>Hi Alex,</p>
<p>I tried the way you suggested on a Windows Mobile Ce 5.0. I have set the FormBorStyle to None and set Location to 0,0. In the load event handler, I have set the size to Bounds.Size or WorkingArea.Size&#8230;but it doesn&#8217;t solve my problem. First, the task bar is still showing and secondly, I don&#8217;t have the title bar.</p>
<p>Do you have any solution so that I can have a form in a Windows Mobile Ce 5.0 c# application to take the screen space completely (even the task bar space) and have the title bar of the screen and also, the screen should not be movable.</p>
<p>Thanks.</p>
<p>Ashvin</p>
]]></content:encoded>
	</item>
</channel>
</rss>
