Search results

  1. R

    Automatically Print PDF When They Are Received

    Answered at http://www.slipstick.com/developer/print-attachments-as-they-arrive/
  2. R

    compare folder contents to e-mail attachement

    Hi, FileDialog will let you select a Windows directory/folder. FileSystem will let loop through all files in the folder. Scripting.FileSystem will let modify/delete the files - requires a reference to Microsoft Runtime Library. The main procedure will have to copy the body of each email...
  3. R

    Calendar Permissions - Delegates - View Title Only

    Hi, Have you Shared the calender or Delgated Access to the calender? For a Shared Calender you can goto Change Sharing Permissions and select Free Busy Time and Location under Read. This does not work for Delegates. Regards RS
  4. R

    Outlook 2010 Forms

    Hi, This happens if Invite Attendees > Meeting > Responses > Request Responses is unchecked. Regards, RS
  5. R

    run-time 438: object doesn't support this property or method

    The error often crops up when VBA cannot decipher the the kind of object referenced and hence fails to connect the property/method with the object. Try changing the line "Sub ReadE3(ByVal mailItem As Object)" to "Sub ReadE3(ByVal mailItem As Outlook.mailItem)"
  6. R

    Attachments to New email item

    Sub AddFiles() Dim StrFolder, StrFile, StrFiles(200), StrSearch As String Dim i, j As Integer Dim myMailItem As MailItem 'Select FOLDER and save all file name in an array StrFolder = "C:\New Folder" ' CHANGE THE FOLDER StrFile = Dir(StrFolder &...
  7. R

    VBA SWcript Help Required

    Hi, This procedue will let you maunally pick the TOP folder and then search the SUCCESS folder for UNREAD mails only - You can delete the line regarding UNREAD emails to search the all mails in the SUCCESS folder. For each UNREAD mail it will loop through the entire TOP folder and move...
Back
Top