Code thì chỉ có như vầy thôi. Mình nghĩ bạn xem file chắc sẽ hiểu ha!
Mã:
Private Sub CommandButton2_Click()
Dim temp As String
For Each MyControl In Controls
temp = MyControl.Name & Chr(10) & temp
Next
MsgBox (Controls.Count & Chr(10) & temp)
MsgBox (Controls("Label" & 1).Caption)
End Sub
Private Sub CommandButton2_Click()
Dim temp As String
For Each MyControl In Controls
temp = MyControl.Name
MsgBox (Controls(temp).Caption)
Next
End Sub