I want to loop through and change all the label captions on my form.

Here is what I was trying:

VB Code:
  1. For Each Label In Me
  2.    Label.Caption = "New Caption"
  3. Next

I get a property not supported error. Any ideas?