R
richardb
I want to set all the text objects in the detail line to bold depending on a
condition of one of those objects. For example,
If txtExpired.Text <> "Current" Then
txtExpired.FontBold = 1 : txtName.FontBold = 1 'etc.
Else: txtExpired.FontBold = 0 : txtName.FontBold = 1 'etc.
End If
My question: Is there a syntax, of the form "For all objects in detail" that
allows me to bold every text box in the detail line without setting each
FontBold to 1 individually?
condition of one of those objects. For example,
If txtExpired.Text <> "Current" Then
txtExpired.FontBold = 1 : txtName.FontBold = 1 'etc.
Else: txtExpired.FontBold = 0 : txtName.FontBold = 1 'etc.
End If
My question: Is there a syntax, of the form "For all objects in detail" that
allows me to bold every text box in the detail line without setting each
FontBold to 1 individually?