Report.WriteBr Method
The WriteBr method is the equivalent of appending the HTML tag 
<br /> to the string of the 
Write method. 
Report.Write(str & "<br />") 	' Same as Report.WriteBr(str) 
		The method WriteBr is portable and will generate the 
		appropriate code for an HTML, RTF or Text report. The method 
		WriteBr is also a lot faster than manually concatening the tag 
		<br />. The <br /> tag is always 
		appended, regardless of the content of the string. Examples: 
Report.WriteBr "Number of Children: " & i.Children.Count
Report.WriteBr "Children: " & i.Children.HtmlHyperlinks
Report.WriteBr "This is <b>bold</b> text"
 
See Also: 
Write 
               |