http://www.vb-helper.com/HowTo/ctlnames.zip

	Purpose
Access controls by their names as text strings.

	Method
The Controls collection uses the controls' names as keys. Use that to get
the controls and access their properties. For example, the following code
shows how to read the Caption of the control with name "Label1":

	Dim ctl_name As String

	    ctl_name = "Label1"
	    Debug.Print Controls(ctl_name).Caption

	Disclaimer
This example program is provided "as is" with no warranty of any kind. It is
intended for demonstration purposes only. In particular, it does no error
handling. You can use the example in any form, but please mention
www.vb-helper.com.
