How can I cycle through all of the textbox controls on my form?

I thought it was something like..

VB Code:
  1. Dim txt as TextBox
  2. For Each txt in Me.Controls
  3.    'Do something :D
  4. Next


But alas...