C cwfontan Active member Joined Jan 9, 2009 Messages 35 Programming Experience 1-3 May 13, 2009 #1 Me.Text = String.Empty what is the "Me" reference to? the class? can someone explain this a little? Thanks
Me.Text = String.Empty what is the "Me" reference to? the class? can someone explain this a little? Thanks
JuggaloBrotha VB.NET Forum Moderator Staff member Joined Jun 3, 2004 Messages 4,530 Location Lansing, MI; USA Programming Experience 10+ May 13, 2009 #2 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. Upvote 0 Downvote
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.