I create a series of labels and text boxes at runtime.
for x = 1 to 10
labelName = "label" & x
Set cControlLabel = Me.frameScrollable.Controls.Add("Forms.Label.1", labelName, True)
next xHow can I assign an on_click event to these? I have seen some rather complicated...