|
||
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