/ Forums / Advansys Formativ / Creating Solutions with Formativ / Reading Attachment Size onsend / Reply To: Reading Attachment Size onsend
February 6, 2005 at 2:30 pm
#7117
The following code will read the attachments size for the composing message. Hope this helps.
dim x
for x = 0 to groupwise.ItemAttachmentGetCount(“X00”) -1
‘ Attachment size, in bytes of the specified file
msgbox Utilities.FileSystem.GetSizeOfFile(groupwise.ItemAttachmentGetName(“X00”, x))
next