Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Returns the last known error.

Syntax

Code Block
Error = SRP_Zip("GetLastError")

Returns

A message describing the nature of the error.

Remarks

Call this service whenever any of the other SRP Zip Utility services fails to provide expected results.

Example

Code Block
// Test for errors
hZip = SRP_Zip("Open", TestZIP)
If hZip EQ 0 then
   Call Msg(@Window, SRP_Zip("GetLastError"))
end else
   SRP_Zip("Close", hZip)
end

...