well you could loop through forms.controls and check for the control's name. It wouldnt be very efficient though.... something like this:

VB Code:
  1. Dim ctrl As Control
  2.        For Each ctrl In Me.Controls
  3.              'Examine all the controls here
  4.        Next

I would say it's better to do it manually though