Hey, I finally got it to work!

Try this . . .

VB Code:
  1. Private Sub DataReport_Initialize()
  2.     <ReportName>.Sections("<SectionName>").Controls("<ControlName>").ForeColor = &HFF&
  3.     DoEvents
  4. End Sub

Simply insert your DataReport name, the SectionName that contains the rptTextBox and the actual name of the text box (ControlName)

(&HFF& is red)

Hope this helps!