Public Class Form1
Dim i As Integer = 1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim lablen As New Label
lablen.Parent = Me
lablen.BackColor = Color.Red
Dim loc As Point
loc.X = 120 + i
loc.Y = 120 + i
lablen.Location = loc
lablen.Visible = True
lablen.Show()
i += 10
End Sub
End Class