Hi

You can modify the text of a textbox anywhere on the report it doesn0t matter on which section it is located

VB Code:
  1. Dim crreportobject As CrystalDecisions.CrystalReports.Engine.ReportObject
  2.  
  3.  
  4.                     For Each crreportobject In crReportDocument.ReportDefinition.ReportObjects
  5.                         If TypeOf (crreportobject) Is CrystalDecisions.CrystalReports.Engine.TextObject Then
  6.                             Dim crtextobject As CrystalDecisions.CrystalReports.Engine.TextObject
  7.                             If Trim(crreportobject.Name) = "Text4" Then
  8.                                 crtextobject = DirectCast(crreportobject, CrystalDecisions.CrystalReports.Engine.TextObject)
  9.                                 crtextobject.Text = "Hello"
  10.                             End If
  11.                         End If
  12.                    next

Regards
Jorge