ok here's what i'm trying to do. since the terms and condition could change i want to place it in a file and read it into a specific text object in the report. it works fine except that each term and/or condition is numbered and therefore should be placed on a new line. I cannot get it to place each line on a new line after the previous term and/or condition. i've tried everything i can think hopefully someone has a better idea.


VB Code:
  1. With Me.CrystalReportSource1.ReportDocument.ReportDefinition.Sections("Section3")
  2.                 Dim fTermConditions As New IO.StreamReader("C:\Inetpub\wwwroot\QuoteManager\Reports\TermsConditions.txt")
  3.                 Dim TermsConditions As New StringBuilder
  4.  
  5.                 Do While fTermConditions.Peek > -1
  6.                     TermsConditions.AppendLine(fTermConditions.ReadLine)
  7.                 Loop
  8.                 fTermConditions.Close()
  9.                 fTermConditions.Dispose()
  10.                 fTermConditions = Nothing
  11.  
  12.                 CType(.ReportObjects("txtoTermsConditions"), _
  13.                     CrystalDecisions.CrystalReports.Engine.TextObject).Text = TermsConditions.ToString
  14.             End With