I'm trying to make my program extract a .zip file, deliver it's content in a folder, while showing progress in a progressbar. If i somewhat cont get the progressbar thing to work, i would also apprieciate if the "Unzipper" could just switch to another form. Heres the code i currently got for extraction:
Dim sc As New Shell32.Shell()
'Create directory in which you will unzip your files .
IO.Directory.CreateDirectory("C:\Users\NikolajBanke\Desktop\Test\Unzipped")
'Declare the folder where the files will be extracted
Dim output As Shell32.Folder = sc.NameSpace("C:\Users\NikolajBanke\Desktop\Test\Unzipped")
'Declare your input zip file as folder .
Dim input As Shell32.Folder = sc.NameSpace("C:\Users\NikolajBanke\Desktop\Test\peace.zip")
'Extract the files from the zip file using the CopyHere command .
output.CopyHere(input.Items, 4)
Thank you for any help i would get :)