bonjour, j'ai crée un logiciel pour afficher sont contenu winrar mais j'ai besoin de l'aide pour afficher sont contenu d'un fichier winrar.
dans mon logiciel il y a:
buttons 1
textbox1
textbox2
listview1
openfiledialog1

voici mes code:
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
Public Class Form1
 
    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
 
    End Sub
 
    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        Dim dialog As New OpenFileDialog()
        OpenFileDialog1.Filter = "Fichier Winrar (*.rar)|*.rar"
        If DialogResult.OK = OpenFileDialog1.ShowDialog Then
        End If
        TextBox1.Text = OpenFileDialog1.FileName
    End Sub
 
    Private Sub TextBox1_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox1.TextChanged
 
    End Sub
    Private Sub ListView1_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ListView1.SelectedIndexChanged
 
    End Sub
 
    Private Sub TextBox2_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox2.TextChanged
        ListView1.Columns.Add("NAME", 190, HorizontalAlignment.Left)
        ListView1.Columns.Add("SIZE", 100, HorizontalAlignment.Left)
        ListView1.Columns.Add("PACKED", 100, HorizontalAlignment.Left)
        ListView1.Columns.Add("CRC32", 100, HorizontalAlignment.Left)
    End Sub
End Class
voici l'image de mon logiciel: http://imageshack.us/a/img4/1432/logicielu.png

Qui pourrais m'aider a résoudre mon problème merci .