I have searched for this answer and can't seem to find the solution, I am using imageen's thumb viewing component "imageenmview" what I would like to do is be able to open a zip file and treat it like a regular folder then populate the thumb viewer component without actualy having to extract the zip file.
I tried to extract one file at a time into a memory stream then load the stream into the thumb viewer but didn't have much luck i guess I am having problems getting my head around the system.zip lib in Delphi and help in the right direction is much appreciated.
System.Zipdoesn't expose any method that will extract zip content to a stream. (You can read the source inSystem.Zip.pas, found in your$(BDSDIR)\Source\rtl\commonfolder.) You might want to look at using a different zip library instead. I'd suggest starting with looking into Abbrevia, the open-source component set from TurboPower. I'm not sure off-hand if it supports what you want, but it's a great package in general, and is much better than theSystem.Zipimplementation. – Ken White Jul 12 '12 at 23:54