I want to pop up a form in C# .net 2.0 which should be in front of the desktop (topmost) until the user clicks the close button.
How to do so?
I tried the code from here:
http://dotnet-snippets.de/dns/fenster-wirklich-in-den-vordergrund-des-desktops-bringen-SID1005.aspx
But it didn’t work.
My system is Win7.
Set the form’s TopMost property to true and MinimizeBox property to false.