' on regarde si l'outil est libre
With Sheets("RéservationEnCours")
Set StrSearch = .Range(.Cells(LigneOutil, ColonneDébutPret), .Cells(LigneOutil, ColonneFinDePrèt)).Find(What:="*", _
After:=.Cells(LigneOutil, ColonneDébutPret))
If Not (StrSearch) Is Nothing Then
MsgBox "Ce matériel est déja réservé sur cette période par ! " & StrSearch
Exit Sub
End If
With .Range(.Cells(LigneOutil, ColonneDébutPret), .Cells(LigneOutil, ColonneFinDePrèt))
.Interior.Color = 65535 ' on réserve l'outil
.Value = Me.TxtClient
End With
End With
With Sheets("Location")