I've downloaded Xstandard zip component from I want to see(just see!) the list of files of archive.
This is the example from their site:
Dim objZip, objItem
Set objZip = Server.CreateObject("XStandard.Zip")
For Each objItem In objZip.Contents("C:\Temp\images.zip")
Response.Write objItem.Path & objItem.Name & "<br />"
Next
Set objZip = Nothing
Set objItem = Nothing
When i try to write this code in VFP8, i get
"Expression evaluator failed" error message.
How can I convert this to VFP8?
This is the example from their site:
Dim objZip, objItem
Set objZip = Server.CreateObject("XStandard.Zip")
For Each objItem In objZip.Contents("C:\Temp\images.zip")
Response.Write objItem.Path & objItem.Name & "<br />"
Next
Set objZip = Nothing
Set objItem = Nothing
When i try to write this code in VFP8, i get
"Expression evaluator failed" error message.
How can I convert this to VFP8?