qry in displaying a label in all the forms

srivalli

Well-known member
Joined
May 4, 2005
Messages
189
Programming Experience
Beginner
hello to all,
in my project i have many forms.
my qry is i want to keep one label constant through out the forms i opened at the top
so can i know the option
thanks
 
Hey srivalli,

I'm not entirely sure what you're after, but if you want the same label to appear in each form you create, try creating a blank form with this label,make all your other forms inherit this one. Ie.. in forms you already have change the line inherits System.Windows.Forms.Form to inherits MyFormWithLabel. When you create a new for use the Add Inherited.. Option.
 
Back
Top