Pièces jointes VBA

JO882161 Messages postés 6 Statut Membre -  
JO882161 Messages postés 6 Statut Membre -
Bonjour,

Pourquoi je n'arrive pas à envoyer des pièces jointes ?

'Envoie de l'email : eMail

Private Sub CommandButton1_Click()

'Working in Excel 2002-2016
Dim AWorksheet As Worksheet
Dim Sendrng As Range
Dim rng As Range

On Error GoTo StopMacro

With Application
.ScreenUpdating = False
.EnableEvents = False
End With

'Fill in the Worksheet/range you want to mail
'Note: if you use one cell it will send the whole worksheet
Set Sendrng = Worksheets("Mail").Range("A1:G23")

'Remember the activesheet
Set AWorksheet = ActiveSheet

With Sendrng

' Select the worksheet with the range you want to send
.Parent.Select

'Remember the ActiveCell on that worksheet
Set rng = ActiveCell

'Select the range you want to mail
.Select

' Create the mail and send it
ActiveWorkbook.EnvelopeVisible = True
With .Parent.MailEnvelope

' Set the optional introduction field thats adds
' some header text to the email body.
.Introduction = "Produktionsanleitung für Klusi."

With .Item
.To = Worksheets("Mail").Range("B23")
.CC = ""
.BCC = ""
.Subject = "Klusi"
.Attachements.Add ("Q:\ZLS-Command_Temp\UST Mühleberg Duplex 16kV Ltg. Illiswil")
.Send ' envoie automatique
End With

End With

'select the original ActiveCell
rng.Select
End With

'Activate the sheet that was active before you run the macro
AWorksheet.Select

StopMacro:
With Application
.ScreenUpdating = True
.EnableEvents = True
End With
'ActiveWorkbook.EnvelopeVisible = False

End Sub

2 réponses

  1. yg_be Messages postés 23437 Date d'inscription   Statut Contributeur Dernière intervention   Ambassadeur 1 588
     
    Tu as un message d'erreur?
    Ce n'est pas la présence d'espaces dans le nom qui cause le problème?
    0
  2. JO882161 Messages postés 6 Statut Membre
     
    Non pas de message d'erreur ;)
    0
    1. yg_be Messages postés 23437 Date d'inscription   Statut Contributeur Dernière intervention   1 588
       
      Le mail est envoyé sans fichier attaché?
      0
    2. JO882161 Messages postés 6 Statut Membre
       
      en effet :) ja'i fais Ctrl C @ V qui n'as pas marché. Grrrrrrrrrrrr.

      Sais-tu si y a possibilité d'envoyé juste une feuille de mon fichier excel ?
      0
    3. yg_be Messages postés 23437 Date d'inscription   Statut Contributeur Dernière intervention   1 588
       
      Je pense qu'il faut créer un nouveau fichier ne contenant qu'une feuille, et puis attacher ce fichier au mail.
      0
    4. JO882161 Messages postés 6 Statut Membre
       
      Par exemple :

      With .Item
      .To = Worksheets("Mail").Range("B23")
      .CC = ""
      .BCC = ""
      .Subject = "Klusi"
      .Attachments.Add = Worksheets("Mail")
      .Send ' envoie automatique

      End With
      0
    5. yg_be Messages postés 23437 Date d'inscription   Statut Contributeur Dernière intervention   1 588
       
      Non, c'est plus compliqué.
      0