Private Sub CheckBox5_Click()
'Enable Texboxes for the T. Fittings
Dim cCont As Control
If CheckBox5 = True Then
Application.EnableEvents = False
For Each cCont In Me.MultiPage1.Pages("Page2").Controls
With cCont
If .Name Like "TxtTP" & "*" Then
.Object.Enabled = True
If .Object.Text = "Please Enter Name Here" Then
.Object.Text = ""
Else
End If
.Object.ForeColor = RGB(0, 0, 0)
End If
End With
Next
Application.EnableEvents = True
Else
Application.EnableEvents = False
For Each cCont In Me.MultiPage1.Pages("Page2").Controls
With cCont
If .Name Like "TxtTP" & "*" Then
.Object.Enabled = False
If .Object.Text = "" Then
.Object.Text = "Please Enter Name Here"
Else
End If
.Object.ForeColor = RGB(165, 165, 165)
End If
End With
Next
Application.EnableEvents = True
End If
End Sub