G Guest Feb 2, 2005 #1 Is there a property that allows me to retrieve the size of an email attachment through VBA? Thanks - Steve Moore
Is there a property that allows me to retrieve the size of an email attachment through VBA? Thanks - Steve Moore
D Dmitry Streblechenko Feb 2, 2005 #2 No, not in the Outlook Object Model. Dmitry Streblechenko (MVP) http://www.dimastr.com/ OutlookSpy - Outlook, CDO and MAPI Developer Tool
No, not in the Outlook Object Model. Dmitry Streblechenko (MVP) http://www.dimastr.com/ OutlookSpy - Outlook, CDO and MAPI Developer Tool
W Wendi Taranto via OfficeKB.com Feb 2, 2005 #3 Size Property Returns a Long indicating the size (in bytes) of the Outlook item. Read- only. expression.Size expression Required. An expression that returns one of the objects in the Applies To list.
Size Property Returns a Long indicating the size (in bytes) of the Outlook item. Read- only. expression.Size expression Required. An expression that returns one of the objects in the Applies To list.
G Guest Feb 2, 2005 #4 Thanks Dmitry I thought I was going blind not being able to find it - perhaps a property that needs to be exposed, it is a field on outlook views. Any ideas on how I could retrieve attachment sizes without having to save to file and read? Steve Moore
Thanks Dmitry I thought I was going blind not being able to find it - perhaps a property that needs to be exposed, it is a field on outlook views. Any ideas on how I could retrieve attachment sizes without having to save to file and read? Steve Moore
W Wendi Taranto via OfficeKB.com Feb 2, 2005 #5 Sorry, now I see that you want the size of the attachment, not the record. Ignore previous post.
G Guest Feb 2, 2005 #6 Dmitry I did notice that Redemption has an attachment size property - will have a look there
D Dmitry Streblechenko Feb 2, 2005 #7 CDO 1.21 - Attachment.Fields(PR_ATTACH_SIZE) Extended MAPI: read PR_ATTACH_SIZE from IAttach using HrGetOneProp or IAttach::GetProps Redemption - Attachment.Size or Attachment.Fields(PR_ATTACH_SIZE) PR_ATTACH_SIZE = 0x0E200003 Dmitry Streblechenko (MVP) http://www.dimastr.com/ OutlookSpy - Outlook, CDO and MAPI Developer Tool
CDO 1.21 - Attachment.Fields(PR_ATTACH_SIZE) Extended MAPI: read PR_ATTACH_SIZE from IAttach using HrGetOneProp or IAttach::GetProps Redemption - Attachment.Size or Attachment.Fields(PR_ATTACH_SIZE) PR_ATTACH_SIZE = 0x0E200003 Dmitry Streblechenko (MVP) http://www.dimastr.com/ OutlookSpy - Outlook, CDO and MAPI Developer Tool