D
default105
Is there an easy way to see a labels associations with another object, ie
textbox, combobox?
textbox, combobox?
Douglas J Steele said:Programmatically, you can look at its Parent.
For instance, to find out what control label MyLabel is associated with, you
can use
Forms("MyForm").Controls("MyLabel").Parent.Name
(note that MyForm must be open)
If the label isn't linked to a control, that will return the name of the
form.