erazer
Junior Member
Posts: 61
|
Post by erazer on May 4, 2009 13:07:25 GMT -5
When I call Zipper.CancelTheOperation, I have to see "User Aborted Operation" message, how can I disable it ? I want to make custom message instead this.
|
|
|
Post by Kevin on May 4, 2009 13:23:16 GMT -5
Catch the exception yourself. Like this...
try VCLZip.Zip; except On EUserCanceled do begin // Show your own dialog or whatever you want to do here, including nothing if that is what you want end; // On EUserCanceled end; // try
|
|