PDA

View Full Version : View content .zip file in list box....


lepinski
08-17-2004, 03:24 PM
Hi, I want to view the content the a zip file in list box, and next open each file from list box.

I have a buttom, this call a "pdf.zip", with password protection.
extract pdf.zip in a temp folder.

I want to see the content of the file "pdf.zip" in a listbox without extract files to the temp folder, It's possible?

Worm
08-17-2004, 03:40 PM
tblFiles = Zip.GetContents("AutoPlay\\Docs\\your.zip", true)
for index, files in tblFiles do
result = ListBox.AddItem("ListBox1", files, "")
end


Hi, I want to view the content the a zip file in list box, and next open each file from list box.

I have a buttom, this call a "pdf.zip", with password protection.
extract pdf.zip in a temp folder.

I want to see the content of the file "pdf.zip" in a listbox without extract files to the temp folder, It's possible?

lepinski
08-17-2004, 04:14 PM
Thanks Worm, Now,
when I see the list, it's possible open a .pdf file without extract to temp folder