I tried to use the following code:

VB Code:
  1. Dim ctrl as Control
  2.  
  3. For Each ctrl in grpInfo.Controls
  4.    If Typeof ctrl is TextBox Then
  5.       'hrmf
  6.    End If
  7. Next

But When I get to the "hrmf" part, I don't have the ability to set/unset the Locked property of my Textbox control...

Any ideas on why?

Thanks,
Squirrelly1