How would i make all the textboxes in my form become disabled?? Am I on the right track?? thank you

Private Sub Command1_Click()
Dim text As TextBox
For Each text In ???
text.Enabled = False
Next
End Sub