Did you ensure that the "ShowInTaskbar" property is false?

Signature
Bob Powell [MVP]
Visual C#, System.Drawing
The Image Transition Library wraps up and LED style instrumentation is
available in the June of Well Formed for C# or VB programmers
http://www.bobpowell.net/currentissue.htm
Answer those GDI+ questions with the GDI+ FAQ
http://www.bobpowell.net/gdiplus_faq.htm
The GDI+ FAQ RSS feed: http://www.bobpowell.net/faqfeed.xml
Windows Forms Tips and Tricks RSS: http://www.bobpowell.net/tipstricks.xml
Bob's Blog: http://bobpowelldotnet.blogspot.com/atom.xml
> Hello
>
[quoted text clipped - 10 lines]
>
> Beren.
Beren - 18 Jul 2004 16:31 GMT
Yes I have set the property to false, but alt tabbing still shows the form
icon in the list.
> Did you ensure that the "ShowInTaskbar" property is false?
>
[quoted text clipped - 13 lines]
> >
> > Beren.
Bob Powell [MVP] - 18 Jul 2004 19:28 GMT
Set the form border style to ToolWindow. That should fix it.

Signature
Bob Powell [MVP]
Visual C#, System.Drawing
The Image Transition Library wraps up and LED style instrumentation is
available in the June of Well Formed for C# or VB programmers
http://www.bobpowell.net/currentissue.htm
Answer those GDI+ questions with the GDI+ FAQ
http://www.bobpowell.net/gdiplus_faq.htm
The GDI+ FAQ RSS feed: http://www.bobpowell.net/faqfeed.xml
Windows Forms Tips and Tricks RSS: http://www.bobpowell.net/tipstricks.xml
Bob's Blog: http://bobpowelldotnet.blogspot.com/atom.xml
> Yes I have set the property to false, but alt tabbing still shows the form
> icon in the list.
[quoted text clipped - 18 lines]
> > >
> > > Beren.
Thinking about your requirements a bit more deeply it seems to me that you
probably need a different sort of window entirely.
Consider making the window based on NativeWindow and using p/invoke to show
the window with the SW_NOACTIVATE style.

Signature
Bob Powell [MVP]
Visual C#, System.Drawing
The Image Transition Library wraps up and LED style instrumentation is
available in the June of Well Formed for C# or VB programmers
http://www.bobpowell.net/currentissue.htm
Answer those GDI+ questions with the GDI+ FAQ
http://www.bobpowell.net/gdiplus_faq.htm
The GDI+ FAQ RSS feed: http://www.bobpowell.net/faqfeed.xml
Windows Forms Tips and Tricks RSS: http://www.bobpowell.net/tipstricks.xml
Bob's Blog: http://bobpowelldotnet.blogspot.com/atom.xml
> Hello
>
[quoted text clipped - 10 lines]
>
> Beren.
Beren - 18 Jul 2004 20:11 GMT
Hmm as you might have noticed I'm not that experienced yet...
If I make a new form class inheriting from nativewindow, how could I use the
invoke and that window message ?
Thanks for helping this clueless person
ps. the toolwindow setting solved the alt-tab issue, but then I had the
titlebar and borders ofcourse...
> Thinking about your requirements a bit more deeply it seems to me that you
> probably need a different sort of window entirely.
[quoted text clipped - 17 lines]
> >
> > Beren.
Gerrit Schunk - 18 Jul 2004 22:26 GMT
Set Form.Text = "" and Form.ControlBox = False to remove the title bar. You
still will have a small border around the form, but maybe this is OK for
you.
Gerrit
> Hmm as you might have noticed I'm not that experienced yet...
> If I make a new form class inheriting from nativewindow, how could I use the
[quoted text clipped - 29 lines]
> > >
> > > Beren.
Beren - 19 Jul 2004 17:14 GMT
Nah that looks too nasty :)
> Set Form.Text = "" and Form.ControlBox = False to remove the title bar. You
> still will have a small border around the form, but maybe this is OK for
[quoted text clipped - 41 lines]
> > > >
> > > > Beren.