Bonsoir cher ami excelien,
Je reviens vers vous car encore une fois mes connaissance on atteint mes limites et malgré mes recherches je ne trouves pas de solution ;
Mon problème et le suivants, j’ai une macro (cf code ci-dessous) dans un usf qui me permet à la fois d’envoyer un mail mais aussi une invitation de calendrier à une liste de personne plus ou moins grande dont le nom et contenu dans des combobox en fonction de critère contenu dans les textbox. Jusque-là pas de problème tout marche bien.
Mon problème est que je souhaiterais dans le cas où il trouve que ma condition et juste et qu’il rajoute cette personne en destinataire qu’il rajoute en copie une personne (qui serait différente selon la personne ajouté), les nom des personnes à mettre en copie se trouve également dans textbox.
Et la par contre plus rien ne vas, tout ce que je tente ne marche pas !!!
Merci d'avance pour votre aide!!!
Je reviens vers vous car encore une fois mes connaissance on atteint mes limites et malgré mes recherches je ne trouves pas de solution ;
Mon problème et le suivants, j’ai une macro (cf code ci-dessous) dans un usf qui me permet à la fois d’envoyer un mail mais aussi une invitation de calendrier à une liste de personne plus ou moins grande dont le nom et contenu dans des combobox en fonction de critère contenu dans les textbox. Jusque-là pas de problème tout marche bien.
Mon problème est que je souhaiterais dans le cas où il trouve que ma condition et juste et qu’il rajoute cette personne en destinataire qu’il rajoute en copie une personne (qui serait différente selon la personne ajouté), les nom des personnes à mettre en copie se trouve également dans textbox.
Et la par contre plus rien ne vas, tout ce que je tente ne marche pas !!!
Code:
Sub CommandButton5_Click()
Dim OLApplication As Outlook.Application, olmail As Outlook.MailItem
Set OLApplication = CreateObject("Outlook.Application")
Set olmail = OLApplication.CreateItem(olMailItem)
Dim Desti As Outlook.Recipient
Dim OkApp As New Outlook.Application
Dim Rdv As Outlook.AppointmentItem
With olmail
.Importance = olImportanceNormal
.Subject = "Test" 'Objet
.Body = "Bonjour,"
.Categories = "Daily"
.OriginatorDeliveryReportRequested = True 'Accusé de dépôt
.Display '<-- Pour vérifier le mail avant l'envoi
End With
If ComboBox37.Value = "Confirmer" Then
Set Desti = olmail.Recipients.Add(ComboBox8)
ElseIf ComboBox37.Value = "Rajouter" Then
ElseIf ComboBox37.Value = "Indisponible" Then
ElseIf ComboBox37.Value = "" Then
End If
If ComboBox47.Value = "Confirmer" Then
Set Desti = olmail.Recipients.Add(ComboBox9)
ElseIf ComboBox47.Value = "Rajouter" Then
ElseIf ComboBox47.Value = "Indisponible" Then
ElseIf ComboBox47.Value = "" Then
End If
If ComboBox46.Value = "Confirmer" Then
Set Desti = olmail.Recipients.Add(ComboBox10)
ElseIf ComboBox46.Value = "Rajouter" Then
ElseIf ComboBox46.Value = "Indisponible" Then
ElseIf ComboBox46.Value = "" Then
End If
If ComboBox45.Value = "Confirmer" Then
Set Desti = olmail.Recipients.Add(ComboBox11)
ElseIf ComboBox45.Value = "Rajouter" Then
ElseIf ComboBox45.Value = "Indisponible" Then
ElseIf ComboBox45.Value = "" Then
End If
If ComboBox44.Value = "Confirmer" Then
Set Desti = olmail.Recipients.Add(ComboBox12)
ElseIf ComboBox44.Value = "Rajouter" Then
ElseIf ComboBox44.Value = "Indisponible" Then
ElseIf ComboBox44.Value = "" Then
End If
If ComboBox43.Value = "Confirmer" Then
Set Desti = olmail.Recipients.Add(ComboBox13)
ElseIf ComboBox43.Value = "Rajouter" Then
ElseIf ComboBox43.Value = "Indisponible" Then
ElseIf ComboBox43.Value = "" Then
End If
If ComboBox42.Value = "Confirmer" Then
Set Desti = olmail.Recipients.Add(ComboBox14)
ElseIf ComboBox42.Value = "Rajouter" Then
ElseIf ComboBox42.Value = "Indisponible" Then
ElseIf ComboBox42.Value = "" Then
End If
If ComboBox41.Value = "Confirmer" Then
Set Desti = olmail.Recipients.Add(ComboBox15)
ElseIf ComboBox41.Value = "Rajouter" Then
ElseIf ComboBox41.Value = "Indisponible" Then
ElseIf ComboBox41.Value = "" Then
End If
If ComboBox40.Value = "Confirmer" Then
Set Desti = olmail.Recipients.Add(ComboBox16)
ElseIf ComboBox40.Value = "Rajouter" Then
ElseIf ComboBox40.Value = "Indisponible" Then
ElseIf ComboBox40.Value = "" Then
End If
If ComboBox39.Value = "Confirmer" Then
Set Desti = olmail.Recipients.Add(ComboBox17)
ElseIf ComboBox39.Value = "Rajouter" Then
ElseIf ComboBox39.Value = "Indisponible" Then
ElseIf ComboBox39.Value = "" Then
End If
If ComboBox38.Value = "Confirmer" Then
Set Desti = olmail.Recipients.Add(ComboBox18)
ElseIf ComboBox38.Value = "Rajouter" Then
ElseIf ComboBox38.Value = "Indisponible" Then
ElseIf ComboBox38.Value = "" Then
End If
If ComboBox49.Value = "Confirmer" Then
Set Desti = olmail.Recipients.Add(ComboBox19)
ElseIf ComboBox49.Value = "Rajouter" Then
ElseIf ComboBox49.Value = "Indisponible" Then
ElseIf ComboBox49.Value = "" Then
End If
If ComboBox48.Value = "Confirmer" Then
Set Desti = olmail.Recipients.Add(ComboBox20)
ElseIf ComboBox48.Value = "Rajouter" Then
ElseIf ComboBox48.Value = "Indisponible" Then
ElseIf ComboBox48.Value = "" Then
End If
Set Rdv = OkApp.CreateItem(olAppointmentItem)
With Rdv
.MeetingStatus = olMeeting
.Subject = "tes envoie calendrier depuis USF"
.Body = "...description ...."
.Location = "test"
.Start = #10/24/2014 9:30:00 PM# ' Attention : format mois/jours/année
.Duration = 30 'minutes
.Display
End With
If ComboBox37.Value = "Confirmer" Then
Set Desti = Rdv.Recipients.Add(ComboBox8)
ElseIf ComboBox37.Value = "Rajouter" Then
ElseIf ComboBox37.Value = "Indisponible" Then
ElseIf ComboBox37.Value = "" Then
End If
If ComboBox47.Value = "Confirmer" Then
Set Desti = Rdv.Recipients.Add(ComboBox9)
ElseIf ComboBox47.Value = "Rajouter" Then
ElseIf ComboBox47.Value = "Indisponible" Then
ElseIf ComboBox47.Value = "" Then
End If
If ComboBox46.Value = "Confirmer" Then
Set Desti = Rdv.Recipients.Add(ComboBox10)
ElseIf ComboBox46.Value = "Rajouter" Then
ElseIf ComboBox46.Value = "Indisponible" Then
ElseIf ComboBox46.Value = "" Then
End If
If ComboBox45.Value = "Confirmer" Then
Set Desti = Rdv.Recipients.Add(ComboBox11)
ElseIf ComboBox45.Value = "Rajouter" Then
ElseIf ComboBox45.Value = "Indisponible" Then
ElseIf ComboBox45.Value = "" Then
End If
If ComboBox44.Value = "Confirmer" Then
Set Desti = Rdv.Recipients.Add(ComboBox12)
ElseIf ComboBox44.Value = "Rajouter" Then
ElseIf ComboBox44.Value = "Indisponible" Then
ElseIf ComboBox44.Value = "" Then
End If
If ComboBox43.Value = "Confirmer" Then
Set Desti = Rdv.Recipients.Add(ComboBox13)
ElseIf ComboBox43.Value = "Rajouter" Then
ElseIf ComboBox43.Value = "Indisponible" Then
ElseIf ComboBox43.Value = "" Then
End If
If ComboBox42.Value = "Confirmer" Then
Set Desti = Rdv.Recipients.Add(ComboBox14)
ElseIf ComboBox42.Value = "Rajouter" Then
ElseIf ComboBox42.Value = "Indisponible" Then
ElseIf ComboBox42.Value = "" Then
End If
If ComboBox41.Value = "Confirmer" Then
Set Desti = Rdv.Recipients.Add(ComboBox15)
ElseIf ComboBox41.Value = "Rajouter" Then
ElseIf ComboBox41.Value = "Indisponible" Then
ElseIf ComboBox41.Value = "" Then
End If
If ComboBox40.Value = "Confirmer" Then
Set Desti = Rdv.Recipients.Add(ComboBox16)
ElseIf ComboBox40.Value = "Rajouter" Then
ElseIf ComboBox40.Value = "Indisponible" Then
ElseIf ComboBox40.Value = "" Then
End If
If ComboBox39.Value = "Confirmer" Then
Set Desti = Rdv.Recipients.Add(ComboBox17)
ElseIf ComboBox39.Value = "Rajouter" Then
ElseIf ComboBox39.Value = "Indisponible" Then
ElseIf ComboBox39.Value = "" Then
End If
If ComboBox38.Value = "Confirmer" Then
Set Desti = Rdv.Recipients.Add(ComboBox18)
ElseIf ComboBox38.Value = "Rajouter" Then
ElseIf ComboBox38.Value = "Indisponible" Then
ElseIf ComboBox38.Value = "" Then
End If
If ComboBox49.Value = "Confirmer" Then
Set Desti = Rdv.Recipients.Add(ComboBox19)
ElseIf ComboBox49.Value = "Rajouter" Then
ElseIf ComboBox49.Value = "Indisponible" Then
ElseIf ComboBox49.Value = "" Then
End If
If ComboBox48.Value = "Confirmer" Then
Set Desti = Rdv.Recipients.Add(ComboBox20)
ElseIf ComboBox48.Value = "Rajouter" Then
ElseIf ComboBox48.Value = "Indisponible" Then
ElseIf ComboBox48.Value = "" Then
End If
Set OkApp = Nothing
Set OLApplication = Nothing
Set olmail = Nothing
Merci d'avance pour votre aide!!!