Here's the setting,
I have many link labels in my form(I guess around 150 link labels). All of them will handle a click event, with the same condition when clicked. What are the possible solutions regarding to this problem. Because it's not good if I'll do it one by one.
Below is my code that will loop through all the link label's when form load:
For Each contr As Control In Me.Controls
If TypeOf contr Is LinkLabel Then
End If
Next
Thanks in advanced! ;)