Private Sub TB_Ref_BCF_KeyDown(ByVal KeyCode As MSForms.ReturnInteger, ByVal Shift As Integer)
If KeyCode = 13 Then
If Not TB_Ref_BCF.Text = "" Then
If (Len(TB_Ref_BCF.Text) <> 6 And Len(TB_Ref_BCF.Text) <> 5) Or Not IsNumeric(TB_Ref_BCF.Text) Then
MsgBox "Mauvais code affaire"
With Soupapes.TB_Ref_BCF
.Text = ""
.SetFocus
End With
Exit Sub
End If
Application.EnableEvents = False
Range("Cde_BCF") = TB_Ref_BCF.Text
Application.EnableEvents = True
End If
End If
End Sub