Recent content by oliv-

  1. oliv-

    How to distinguish whether mail is incoming or outgoing?

    Thank you Lewis, but i still use this property. and sometimes for emails that i send with my smartphone (Typeapp )there is headers.
  2. oliv-

    Expand VBA Permanent Delete Code

    Lewis, it's not EXCEL but OUTLOOK
  3. oliv-

    Expand VBA Permanent Delete Code

    Hi, try this Function Nettoyage_Inbox() '--------------------------------------------------------------------------------------- ' Procedure : Nettoyage_Inbox ' Author : OCTU ' Date : 11/01/2015 ' Purpose : permanently delete emails...
  4. oliv-

    Column to display which email alias a message was sent to

    Hi, Try this 'https://social.technet.microsoft.com/Forums/office/de-DE/7196cf81-7822-48bd-8ac5-96ae46566255/how-to-show-email-address-not-just-name-in-from-and-to-fields?forum=outlook ' Mixed and matched from the following sources: '...
  5. oliv-

    How to distinguish whether mail is incoming or outgoing?

    Hi, I usually use this test to find out if the email is incoming or outgoing. But now i see that Emails sent via the Outlook Android Application return .ReceivedByName = "My name" and Emails sent by TypeApp (Android) return a Internet Message Header ! Const PR_TRANSPORT_MESSAGE_HEADERS =...
  6. oliv-

    determine to which address an email has been sent

    Hi , Thank you Diane and Michael.
  7. oliv-

    determine to which address an email has been sent

    Hi, How can I determine to which address an email has been sent? Suppose I have a primary email address primary@domain.com and one (or more) email address alias alias@domain.com. In the Outlook object model, the email was received by my Exchange account and that's all. Of course I can get...
  8. oliv-

    FASTEST METHOD TO ENUMERATE FOLDERS

    Hi, Is there a faster method to enumerate all OUTLOOK FOLDERS and SUBFOLDERS ? Perhaps DASL and Application.AdvancedSearch ? I want to make a ".pickfolder" alternative. Private Sub ListSubFolders() Dim OL As Outlook.Application Dim olNS As Outlook.NameSpace Dim objFolder As...
  9. oliv-

    HOW TO COPY /USE FOLDERS ICONS

    Thank you, Icons are in many files : C:\Program Files (x86)\Microsoft Office\Office14\OUTLOOK.EXE C:\Program Files (x86)\Microsoft Office\Office14\OLKFSTUB.DLL C:\Program Files (x86)\Microsoft Office\Office14\1036\OUTLLIBR.DLL ... Programmatically we need to use ExtractIconEx and DrawIconEx...
  10. oliv-

    HOW TO COPY /USE FOLDERS ICONS

    Hi, I need to use "folders icons" for an application. Is there a way to extract dynamically (vba) these ICONS from OUTLOOK , or from a local file ? Now, i used files from What do the Outlook icons mean? - HowTo-Outlook
  11. oliv-

    property "is printed" or catching print events

    Thank you, This is also what I thought
  12. oliv-

    property "is printed" or catching print events

    Hi, Does an Email have a "printed" property ? Is there a way to catch prints events ? (click in the backstage command Print, Click the Ribbon, or Ctrl+P)
  13. oliv-

    GetTable Add body

    That's what I thought. Thank you
  14. oliv-

    GetTable Add body

    Perfect ! I have this property .add ("http://schemas.microsoft.com/mapi/proptag/0x0E1B000B") 'PR_HASATTACH but is it possible to know attachments count and name ?
Back
Top