Chapter 6 Manipulating Reports Using Scripts


Generating a RTF Report Using Scripts

You can generate a model report or a multimodel report as RTF using the following method on BaseModelReport: GenerateRTF(ByVal FileName As String) As Boolean

Example

set m = ActiveModel
For each Report in m.Reports
   Filename = Report.name & ".rtf"
   Report.GenerateRTF (filename)
Next

 


Copyright (C) 2006. Sybase Inc. All rights reserved.