You can also make your control into an Control-Array. All you have to do is set your Control's INDEX property to zero, then copy and paste the control and it will increment the INDEX property for you, thus creating a Control-Array. Then you can use a Loop to control the controls like this:
For intControl = 0 to 5
cmdInput(intControl).Enabled = True
Next intControl
However, this may not lend itself to be very maintence friendly since all the controls will have the same name, however the index will be what determines what control is accessed. If the the controls are grouped together or they all perform a similar function, then the control-array is probably the way to go.
[sig]<p>Steve<br><a href=mailto:tribesaddict@swbell.net>tribesaddict@swbell.net</a><br><a href= > </a><br> [/sig]