window should not be visible on alt+tab

G

Guest

Hi,

i want to make a window not be seen in the taskbar and when i do alt+tab
also it should not shown icon of this window. Not showing in taskbar is
achieved by ShowInTaskBar property but how about not showing on alt+tab.

Any suggesstions are appreciated.

thanks
vinod
 
M

Michael Powell

Hi Vinod,
to solve you're problem, you could set your ShowInTaskbar property when you
process your key input, if alt-tab is hit, then make it false, and when your
form is restored, you could make it true again.

Mike Powell
Ramuseco Limited .net consulting
www.Ramuseco.com
 
G

Guest

I think you did not get it or may be i am not clear.
I set the showinTaskbar to false. It is not showing in the task bar but on
alt+tab the Windows OS show list of application icons. In that it is showing
which i dont want.
 
S

Shishir Kumar Mishra

Vinod,
Try Following :

this.ShowInTaskbar = false;
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;

Thanks,
Shishir
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top