Here's an example of looping through Form textboxes using VB LINQ and disabling the boxes:

Dim formBoxes = From formControls In Form.Controls _
Where formControls.GetType() Is GetType(TextBox) _
Select formControls

 

For Each oBox In formBoxes

CType(oBox, TextBox).Enabled = False

Next