Bonjour et Merci beaucoup Stapple 1600.
La deuxième proposition fonctionne correctement.
Maintenant, si je peux abuser encore de ta compétence, je t'explique la finalité de ma macro :
Je souhaite envoyer des SMS/MMS depuis Outlook 2019 en passant par ma macro.
Celle-ci s'exécute bien jusqu'à l'envoi du message mais Outlook me rejette, il ne reconnait pas le n° de téléphone.
Voici le code VBA :
Sub smsetmms()
'Dim MonOutlook As New Outlook.Application
Set MonOutlook = Outlook.Application
Set myMobileItem = MonOutlook.CreateItem(olMobileItemSMS)
'Dim myMobileItem As Outlook.MobileItem
Dim chaine As String
Dim icong As Object
Dim Flds As Object
Set olApp = Outlook.Application
Set myMobileItem = olApp.CreateItem(olMobileItemSMS)
Set iConf = CreateObject("cdo.configuration")
Sheets("Feuil1").Select
'For Ln = Cells(Rows.Count, 19).End(xlUp).Row To 6 Step -1
Ln = 1
'If Cells(Ln, "A").Value Like "*+33*" And Cells(Ln, "C").Value > Date + 11 And Cells(Ln, "C").Value < Date + 16 And Cells(Ln, "S").Interior.ColorIndex = 2 Then
If Cells(Ln, "A").Value Like "*+33*" Then
Rows(ActiveCell.Row).Select
'Set myMobileItem = olApp.CreateItem(olMobileItemSMS)
myMobileItem.To = Cells(Ln, "A").Value
myMobileItem.Body = "test"
'
myMobileItem.Display (True)
Cells(Ln, "A").Interior.ColorIndex = 44
Else
GoTo LigneSuivante
End If
LigneSuivante:
' Next Ln
End
Set MonOutlook = Nothing
End Sub