2

What I basically did was a program that shows CPU/RAM/Sound levels in taskbar enter image description here

but it also shows in the alt+tab dialog enter image description here

I have used this code snippet for hiding applications from the alt+tab

protected override CreateParams CreateParams
{
  get
  {
    CreateParams cp = base.CreateParams;
    cp.ExStyle |= 0x80;
    return cp;
   }
}

But that only works if ShowInTaskbar is set to false but I need it on because obvious reasons. Is there some way to make it not show in alt+tab and still preserve itself in the taskbar?

Dmitry
  • 13,797
  • 6
  • 32
  • 48

0 Answers0