If you get bored reading this, just skip it and read the bold part
I'm adding some controls to my form with the Controls.Add method, but the problem that I have is that I dont know how to write events for them
I am adding a whole buncha textboxes, I want them to act as control arrays but how can I tell my event what to handel?

here's an example of what I'm doing if I wasnt clear:
VB Code:
  1. Dim txtValues(30) As TextBox
  2. For i = 0 To 29
  3.             txtValues(i).Size = New System.Drawing.Size(textWidth, textHeight)
  4.             txtValues(i).Name = "txtValue" & i
  5. Next
  6.  
  7. Me.Controls.AddRange(txtValues)
Now I want to add a sub so that if ANY of those textboxes are changed, I would be able to do something, just like a control array.
This is simple if I was doing it during design time, but since I'm adding the controls at runtime I dont know how to add the events for them

the bold part is my problem I guess