Multiple windows in TaskBar

I have a VB.Net app that can open multiple windows. When a few windows get open, they collapse on the task bar with my application Icon, the number of open forms, and the title (WindowsApplication1). Is there a way I can change the title to be my application title?

Thanks

Hank

[296 byte] By [InstantKarma] at [2007-12-24]
# 1

you can prevent the number of form title bars appearing in your taskbar by doing the following for your other forms:

Select the form in designer view. Select its properties

scroll to "Window Style" group in the properties Window

select "ShowInTaskBar" to false

this will prevent the form title bar from appearing in the taskbar for each form you set this property to false

does this help?

ahmedilyas at 2007-8-31 > top of Msdn Tech,Visual Basic,Visual Basic General...
# 2

Hi,

I like having the windows in the taskbar. i just want to change the name of the title of the block in the taskbasr from 'WindowsApplication1'

Thanks

Hank

InstantKarma at 2007-8-31 > top of Msdn Tech,Visual Basic,Visual Basic General...
# 3
I don't think its possible - instead you could just have each title bar of each form, the same textual description as the original form/title bar
ahmedilyas at 2007-8-31 > top of Msdn Tech,Visual Basic,Visual Basic General...
# 4

It's showing "WindowsApplication1" because that is the name of your form. Change the Text property of the form to whatever you want to be displayed in the taskbar.

rkimble at 2007-8-31 > top of Msdn Tech,Visual Basic,Visual Basic General...
# 5
good pick up. I was thinking the user was using the default value constantly.
ahmedilyas at 2007-8-31 > top of Msdn Tech,Visual Basic,Visual Basic General...
# 6

Thanks for the tip, but it only shows 'WindowsApplication1' when I have many forms open from my application and then Windows compresses the windows into 1 taskbar entry. That is the entry that says windows application 1. I have changed the application name and namespace and it has not changed this behaviour.

-Hank

InstantKarma at 2007-8-31 > top of Msdn Tech,Visual Basic,Visual Basic General...
# 7
Hmm... Ok, I'd have thought it was picking it up from the exe name... The only other place it could be is in the Assembly information. On the Application tab of the My Project window, click the Assembly Information button and change the Title and/or Product.
rkimble at 2007-8-31 > top of Msdn Tech,Visual Basic,Visual Basic General...