Hello!
Can somebody help me:

I have active MailItem object and Attachments collection within it.
I made loop:

Dim myItem As Outlook.MailItem
Dim myAttachments As Outlook.Attachments
Dim myAttachment As Outlook.Attachment

For Each myAttachment In myAttachments

'Opens some userform with several myAttachment parameters

'How can user open active attachment directly within form without saving it to drive with VBA?

Next