Private Sub BOuvrir_Click()
Application.DisplayAlerts = False
On Error Resume Next
Workbooks.Open (chemin & Liste.Text)
If Err <> 0 Then
MsgBox "Le dossier 'Facture ou devis' (en fonction du bouton choisi) est vide."
On Error GoTo 0
End If
Application.DisplayAlerts = True
Me.Hide
End Sub