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

  • Thread starter Thread starter Guest
  • Start date Start date
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
 
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.
 
Back
Top