If you really want to create them from scratch (and you have VB6) then use the following method.
Code:
Private Sub Command1_Click()

	Controls.Add "VB.Label", "Label1"
	Me!Label1.Move 0, 0
	Me!Label1.Caption = "My Label"
	Me!Label1.Visible = True

End Sub