[SIZE=2][COLOR=#0000ff]Dim[/COLOR][/SIZE][SIZE=2] f [/SIZE][SIZE=2][COLOR=#0000ff]As [/COLOR][/SIZE][SIZE=2][COLOR=#0000ff]New[/COLOR][/SIZE][SIZE=2] Form2[/SIZE]
[SIZE=2][COLOR=#0000ff]Dim[/COLOR][/SIZE][SIZE=2] l [/SIZE][SIZE=2][COLOR=#0000ff]As [/COLOR][/SIZE][SIZE=2][COLOR=#0000ff]New[/COLOR][/SIZE][SIZE=2] Label[/SIZE]
[SIZE=2]l.Name = [/SIZE][SIZE=2][COLOR=#800000]"mylabel1"[/COLOR][/SIZE]
[SIZE=2]l.Text = [/SIZE][SIZE=2][COLOR=#800000]"hello"[/COLOR][/SIZE]
[SIZE=2]l.Location = [/SIZE][SIZE=2][COLOR=#0000ff]New[/COLOR][/SIZE][SIZE=2] Point(10, 10)[/SIZE]
[SIZE=2]f.Controls.Add(l)[/SIZE]
[SIZE=2]l.BringToFront()[/SIZE]
[SIZE=2]f.Show()[/SIZE]