Question:
How can I set more than one line in a Text Report’s description via scripts?
For example:
Text on Line 1
Text on Line 2
Solution:
To do so, write the following script:
Dim aux
aux = “Text on Line 1” + Chr(10) + “Text on Line 2” + Chr(10)
Reports.Report1.description = aux
Reports.Report1.Print()