Private Sub Suivant_MAJ_Click()
Dim rg As Range
If GLS_Track_ID_MAJ = "" Then
MsgBox "Veuillez saisir un GLS Track ID"
ElseIf Type_No_Colis = "GLS Track ID" Then
'selectionner le userform en fonction du gls track id
Set rg = Sheets("essai").Columns(2).Find(GLS_Track_ID_MAJ.Text, LookIn:=xlValues, lookat:=xlWhole, MatchCase:=False)
If Not rg Is Nothing Then
If rg.Offset(, -1) = "Retour" Then
Application.OnTime Now() + 1# / 24 / 60 / 60 / 10, "Afficher"
Unload Me
End If
Else
MsgBox "Le GLS Track ID '" & GLS_Track_ID_MAJ & "' n'a pas été trouvé !"
GLS_Track_ID_MAJ.SetFocus
End If
End If
End Sub