I'm trying to code a button that puts a new label on the form.

I have tried:
VB Code:
  1. Dim lblNew As New Label
  2.         lblNew.Name = "lblNew"
  3.         lblNew.Text = "Text"
  4.  
  5.         Me.Controls.Add(lblNew)

What is the right way to do this?