16-08-13, 09:45 PM
وحتى لا اعقد عليك الامور اكثر انتبه لهذه الطريقة لفتح بكلمة السر
كود :
Try
Using zip As Ionic.Zip.ZipFile = Ionic.Zip.ZipFile.Read(txt_zipFile.Text)
zip.Password = "12345"
zip.ExtractAll(txt_Ex.Text, Ionic.Zip.ExtractExistingFileAction.OverwriteSilently)
End Using
Catch ex As Exception
If InStr(ex.Message, "Password") Then
MsgBox("خطأ كلمة السر")
End If
End Try
