Send Topic Feedback | See Object Hierarchy Chart
PC-DMIS 2023.2 Object Library
PCDLRN ActiveX DLL > ReportWindow Object : LastExecutionReportMode Method
LastExecutionReportMode Method
Description
This method switches the report window to Last Execution Report Mode.
Syntax
Visual Basic
Public Function LastExecutionReportMode() As Long
Return Type
Long value. This returns -1 (or True) if the function succeeds and 0 (or False) if it does not.
Example

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

lngRetVal = RepWin.LastExecutionReportMode()

MsgBox "PC-DMIS returned " & lngRetVal & " for setting the Report window to Last Execution Report mode."

RepWin.RefreshReport

End Sub

See Also