Select to view content in your preferred language

Avoid showing form in windows taskbar

748
2
Jump to solution
02-19-2013 09:03 AM
Corbinde_Bruin
Frequent Contributor
Hello all,

When I have a form open in ArcMap, it creates another page in the windows taskbar (makes it look like two instances of ArcMap are open, see pic).

[ATTACH=CONFIG]21958[/ATTACH]

How do I change this? I'm using vb.net and calling the form like this:


Dim makeform As New frmMake
makeform.ShowDialog(System.Windows.Forms.Control.FromHandle(My.ArcMap.Application.hWnd))

It doesn't happen when you use native forms like Identify.

Thank you,
Corbin de Bruin
0 Kudos
1 Solution

Accepted Solutions
NeilClemmons
Honored Contributor
ShowInTaskbar is a property of the form.  Set it to False in Properties window in Visual Studio.

View solution in original post

0 Kudos
2 Replies
NeilClemmons
Honored Contributor
ShowInTaskbar is a property of the form.  Set it to False in Properties window in Visual Studio.
0 Kudos
Corbinde_Bruin
Frequent Contributor
Thank you Neil.

I definitely should have researched that one more before posting. I apologize.

-Corbin de Bruin
0 Kudos