Cosmos75
Registered User.
- Local time
- Yesterday, 23:10
- Joined
- Apr 22, 2002
- Messages
- 1,280
Is there a way to show name of a control by double-clicking it? Say I have a textbox names txt1, instead of have to do this for each control I have in a form
Is there some other command to do this?

Code:
Private Sub txt1_DblClick(Cancel As Integer)
MsgBox "txt1"
End Sub