I'm creating a multiple-forms windows application. When I launch second form
(says, frmSecond) from the main from the Main form(frmMain) with ShowDialog()
method, the taskbar add another button for the second form, thus, if I then
open the third form (frmThird), the taskbar add yet another button.
My intention is to only show the Main form (frmMain) button in taskbar since
there is only one application and all other forms launched from main form
subsequently with ShowDialog() should not show in taskbar since all are
belong to the same application.
Is it possible? Thanks for replying...
Solution found, I use ShowInTaskbar = False.

Signature
Regards,
Pedestrian, Penang.
> I'm creating a multiple-forms windows application. When I launch second form
> (says, frmSecond) from the main from the Main form(frmMain) with ShowDialog()
[quoted text clipped - 5 lines]
> subsequently with ShowDialog() should not show in taskbar since all are
> belong to the same application.
Before opening frmSecond, set frmSecond.ShowInTaskBar = false. Same with
frmThird, etc.

Signature
Timm Martin
Mini-Tools
.NET Components and Windows Software
http://www.mini-tools.com
pedestrian - 01 Sep 2006 00:55 GMT
Yes... absolutely... Thanks...
>> I'm creating a multiple-forms windows application. When I launch second form
>> (says, frmSecond) from the main from the Main form(frmMain) with ShowDialog()
[quoted text clipped - 4 lines]
>Before opening frmSecond, set frmSecond.ShowInTaskBar = false. Same with
>frmThird, etc.

Signature
Regards,
Pedestrian, Penang.