Caption in panel bar of Win 2000 even if No caption has been set for our windows Form

G

Guest

Hi
I am developing a Windows application that has single windows form in it. Moreover its this windows form is border less. ShowInTaskBar property for this form is True. But because this form has no border it shows No caption in System taskbar panel ( Panel where windows 'Start' button is lying) also. Please tell how can we show text in system panel even if No Caption is set for Windows Form
We are developing application in c#

Thanks
-Hemant
 
J

Jodie Rapson

Hemant,

The forms 'text' property needs to be set, either at design time in the

properties window or at run time with:

Me.Text = "Some Text"

This should do it.

Jodie Rapson



Hemant said:
Hi,
I am developing a Windows application that has single windows form
in it. Moreover its this windows form is border less. ShowInTaskBar property
for this form is True. But because this form has no border it shows No
caption in System taskbar panel ( Panel where windows 'Start' button is
lying) also. Please tell how can we show text in system panel even if No
Caption is set for Windows Form.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top