Returns the message associated with an error code on an archive.
MyArchive is zipArchive
// Open an archive
ResOpenArchive = zipOpen(MyArchive)
// Error while opening an archive
IF ResOpenArchive <> 0 THEN
// Display an error message
Info(zipMsgError(ResOpenArchive))
...
END
Syntax
<Result> = zipMsgError(<Error code>)
<Result>: Character string
Error message associated with the type of error specified.
<Error code>: Integer
Error code returned when handling an archive.