What you need to do is use the Controls Collection.
Here's a page that goes through a few examples:
http://www.tek-tips.com/faqs.cfm?fid=5010
You should look for examples that show how to identify whether the control is a Text Box - and then modify the code so that you can set the Property of each Text Box to whatever you need it to be.
For instance:
Code:
Dim ctl As Control
For Each ctl In Me.Controls
If (ctl.ControlType = acTextBox) Then
If ctl.Value Is Null Then
ctl.Enabled = False
End If
End If
Next ctl
Hope this helps. All the best!!