Hi there, I just have a big problem,
I have made a program that can unzip files, but it takes a while, so i want to add a progressbar. Only the progressbar is going to start when the zip is finished. I want that when i am unzipping a progressbar is showing how far i am.
My unzipping code is:

oUnZip.ZipFileName = "c:\easycd.zip"
oUnZip.ExtractDir = Label1.Caption
oUnZip.HonorDirectories = True
If oUnZip.Unzip <> 0 Then
MsgBox oUnZip.GetLastMessage
End If

Please help me showing that progressbar..