We are using inherted forms and I am trying to control the form's title to keep it consistant within the application.

An example of what I am doing is like this:

base.vb <-- our base form that is inherited by the other forms
form1.vb <-- form that is inheriteding base.vb

If in form1.vb someone changes the me.text to anything then they clear it, now form1.vb shows me.text = "" or whatever they have in there overriding my inherited forms title.

Long story short, can I lock the me.text so that base.vb overrides or cannot be changed by forms inheriting it?

Thanks !
Eroc