I googled this and found several different codes, but none of them work. What I want is to be able to create a control, for example a Label, during the runtime of my program. I've tried:

Code:
Dim lbl as New Label
lbl.Text = "Hello"
lbl.Location = New Point(20, 20)
lbl.Visible = True
lbl.Show()
lbl.Name = "Label1"
Me.Controls.Add(lbl)
And many other variations. However on each one of them nothing happens, no label is visible. Anyone know how to do this?