Private Sub ComboBox1_Change()
  On Error GoTo fin
  ListView3.ListItems.Clear
  TextBox1.Text = ""
  TextBox4.Text = ""
  NomBanque = ComboBox1.Value
  Compte = "N° COMPTE : "
Compte = "N° COMPTE : " & Sheets(NomBanque).Cells(2, 7)
  With Sheets(NomBanque)
    For i = 4 To .Range("A65000").End(xlUp).Row
      If .Cells(i, 6) = "" And .Cells(i, 1) <> "SOLDE" And .Cells(i, 1) <> "" And .Cells(i, 1) <> "-" Then
        Set Li = ListView3.ListItems.Add(, "A" & i, .Cells(i, 1))
        Li.ListSubItems.Add , , .Cells(i, 2)
        Li.ListSubItems.Add , , .Cells(i, 3)
        Li.ListSubItems.Add , , .Cells(i, 4)
        Li.ListSubItems.Add , , .Cells(i, 5)
        Li.ListSubItems.Add , , .Cells(i, 7)
        Li.ListSubItems.Add , , .Cells(i, 8)
        Li.ListSubItems.Add , , .Cells(i, 13)
        Li.ListSubItems.Add , , i
      End If
    Next
  End With
  Dim J As Integer
  With Sheets(NomBanque)
    For J = 4 To .Range("A65000").End(xlUp).Row
      If .Cells(J, 1) = "SOLDE" Then
        TextBox1.Value = .Cells(J, 13)
      End If
    Next
  End With
fin:
CommandButton2.Enabled = True
CommandButton4.Enabled = True
End Sub