Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
[color blue]ZipCallBack([oObjectName.mZipStatus()])
ZipOpen([MyZipFile.zip],[C:\],.F.)
ZipFile([C:\SomeVeryLargeFile.txt],.F.)
IF oObjectName.lUserDidCancel
[tab]oObjectName.lUserDidCancel = .F.
[tab][/color][color green]&& Delete incomplete .zip file[/color][color blue]
ELSE
[tab]ZipClose()
[tab]ZipCallBack([])
ENDI[/color]
[color blue]oObjectName.lCancel = .T.[/color]
[color blue]DOEVENTS
IF oObjectName.lCancel
[tab]oObjectName.lCancel = .F.
[tab]IF MESSAGEBOX( ;
[tab][tab][Do you want to cancel?],;
[tab][tab][tab]4 + 32 + 0 ,;
[tab][tab][tab][Cancel operation]) = 6
[tab][tab]oObjectName.lUserDidCancel = .T.
[tab][tab]ZipClose()
[tab][tab]ZipCallBack([])
[tab]ENDI
ENDI[/color]