Hi,
The ReportView control is updated with the contents of the Report Object. Inside of the process models, eg. SequentialModel.seq, you will see a step that calls Report.Reset API method to set the report objects contents to a string. Once the Report object has been set, the ReportView control should now contain the information (string) you set the report object to (you may need to call ReportView.UpdateFromExecution method).
So, to get your custom report into the ReportView control, you should call Report.Reset or Report.Load and load the text file you wish to view. Keep in mind that the Report object belongs to an execution, for which there can be only one report object. So, you will either need to concatenate your report string, or set and reset th
e report object with the report you wish to view.
Bob