Please enable JavaScript to view this site.

QPR Knowledge Base 2019.1

Navigation: Developer's Guide > QPR API > The Object Model > QPR Modeling > PGApplication Commands

GetErrorMessage

Scroll Prev Top Next More

Revision history:

Introduced in QPR 7.2.1

 

Returns an error message for the operation in the case the operation failed.

 

Synopsis:

 

PGApplication.GetErrorMessage(viErrorCode)

 

Parameters:

 

viErrorcode: Integer, a code returned by any previously executed script function

 

Required Rights:

 

None.

 

Return Values:

Below are listed the return values that this function can return:

 

Error description (string).

 

Example Procedure:

If (iResult <> 0) Then

 MsgBox "Create file model 1 failed: " + PGApplication.GetErrorMessage(iResult)

End If