-
Text on form!
Hello,I want to know if I have an application on visual basic 2010 and The text which is in the upper of the application I want to code it how? I mean like in facebook when it comes a notification it appears "(1) Facebook" I want to code the text that in the properties?
Any help please?
Thank you for watching.
-
Re: Text on form!
Try
Code:
Me.Text = "Text to display"
-
Re: Text on form!
It's called the TitleBar... and you set it by setting the Text property of the form as dbasnett showed.
-tg