'=======Where is the exception list?======
'and how do I add a specific control to the list i.e. TextBox1
'Ignore if the control name is in the exception list.
For lngI = LBound(avarExceptionList) To UBound(avarExceptionList)
If avarExceptionList(lngI) = strControl Then
bSkip = True
Exit For
End If
Next