quick question about Me.Text = String.Empty

cwfontan

Active member
Joined
Jan 9, 2009
Messages
35
Programming Experience
1-3
Me.Text = String.Empty

what is the "Me" reference to? the class?

can someone explain this a little?


Thanks
 
Me is the class the code is running in, in this case it looks like it'd be a form and the Text property for forms is what's shown in the title bar.

So Me.Text = String.Empty is clearing out the form's title.
 
Back
Top