I am Adding Lables to a form, one at a time.
I want the caption/text of each label to be different from the other, in that if the form contains, Label1, i iterate through it and when i add the next, it should be Lable2....etc. As the numbers on the far end add on. How can i do this.

This is what i have.
VB Code:
  1. For i As Integer = 0 To Me.Controls.Count
  2.     If lbl.Text.ToLower = "added label" Then
  3.         i += 1
  4.         lbl.Text &= i
  5.     Else
  6.         lbl.Text = "Added Label"
  7.     End If
  8.  
  9. Next