This method reloads the report data into the report template, thereby refreshing the contents of the Report window.
Visual Basic |
---|
Public Function RefreshReport() As Long |
Long value. This returns -1 (or True) if the function succeeds and 0 (or False) if it does not.
Sub Main
Dim App As Object
Dim PartProg As Object
Dim RepWin As Object
Set App = CreateObject("Pcdlrn.Application")
Set PartProg = App.ActivePartProgram
Set RepWin = PartProg.ReportWindow
' Refreshes or redraws the current custom report or template
RepWin.RefreshReport
End Sub