I wish to create an outlook form which has a Word object within it. I've
done some experiements, and all of these create an icon of some sort in the
Rich Text field.
If I were to manually Insert an Object into Outlook, I would be able to SEE
this object opened up. This is what I am attempting to do. I need this
word doc to LIVE within the Outlook form so I am attempting to do this
during the design phase. During design, the insert option isn't
available...
Thanks
Set objAttachment = objMessage.Attachments.Add( "c:\temp\a.doc" )
Set objAttachment = Item.Attachments.Add( "c:\temp\a.doc", olOLE )
Set objAttachment = Item.Attachments.Add( "c:\temp\a.doc",
olEmbeddedItem )
Set objAttachment = Item.Attachments.Add( "c:\temp\a.doc", 1, 1, "1" )
Set objAttachment = Item.Attachments.Add( "c:\temp\a.doc", 2, 1, "2" )
Set objAttachment = Item.Attachments.Add( "c:\temp\a.doc", 3, 1, "3" )
Set objAttachment = Item.Attachments.Add( "c:\temp\a.doc", 4, 1, "4" )
Set objAttachment = Item.Attachments.Add( "c:\temp\a.doc", 5, 1, "5" )
Set objAttachment = Item.Attachments.Add( "c:\temp\a.doc", 6, 1, "6" )