1 pièce(s) jointe(s)
	
	
		comment afficher hex editor
	
	
		bonjour, je voudrais savoir comment afficher dans listview1 hex editor avec openfiledialog.
voici mes code :
	Code:
	
1 2 3 4 5 6 7 8 9 10 11 12 13
   | Private Sub Button1_Click(sender As System.Object, e As System.EventArgs) Handles Button1.Click
        Dim dialog As New OpenFileDialog
        dialog.Filter = "All files (*.*)|*.*"
        dialog.Title = "Ouvrer Le Fichier"
        If dialog.ShowDialog = Windows.Forms.DialogResult.OK Then
            TextBox1.Text = dialog.FileName
            ListView1.Items.Clear()
            ListView1.View = View.Details
            ListView1.Columns.Add("OFFSET", 100, HorizontalAlignment.Center)
            ListView1.Columns.Add("00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F", 350, HorizontalAlignment.Center)
            ListView1.Columns.Add("TEXTE", 200, HorizontalAlignment.Center)
            End If
    End Sub | 
 pouvezvous m'aider merci.
voici en image afficher comme hex editor.