Create an `Items` collection containing references to already existing `Item`s
问题 I mean to create an Items collection, and add to it several already existing Item s. For instance, if I have two references to MailItem s, I want to set an Items collection containing those two Item s. It would be something like ' ... ' Code that assigns references to olMail1 and olMail2, of type Outlook.MailItem ' ... Dim MyItems As Outlook.Items ' Assign with Set / create the object MyItems.Add olMail1 MyItems.Add olMail2 ' Code that can use MyItems(1) to get a reference to olMail1 How can