Documentation Center

PassoloApp.GetLastOutput

Returns the text that has been written to the Passolo Message Window during the last command.

Syntax

Expression.GetLangOutput() as String

Expression Required. Object of type PassoloApp

Example

Dim prj As PslProject
Set prj = PSL.ActiveProject

If prj Is Nothing Then Exit Sub

If (Not prj.Import("PASSOLO text format", "c:\test_de.txt")) Then
    MsgBox PSL.GetLastOutput
End If