~Sven NimgerosterflarJun 27, 2014, 11:39 AM46 PostsWould this workDim session As New NotesSession Dim db As NotesDatabase Dim doc As NotesDocument Dim rtitem As NotesRichTextItem Dim object As NotesEmbeddedObject Set db = session.CurrentDatabase Set doc = New NotesDocument( db ) Set rtitem = New NotesRichTextItem( doc, "Body" ) Set object = rtitem.EmbedObject _ ( EMBED_ATTACHMENT, "", "C:\temp\myfile.doc") doc.Form = "Main Topic" doc.Subject = "Document Link" Call doc.Save( True, True )
~Juan BrefreelitobuJun 27, 2014, 1:59 PM18 PostsCreate Doclink to External File Thanks Ricardo. I am trying to create a doclink that appears the same way as when you manually choose Create>Hotspot>URL or Create>Hyperlink but can't seem to find a way to do it?
~Juan BrefreelitobuJun 27, 2014, 1:59 PM18 PostsCreate Doclink to External File Thanks Ricardo. I am trying to create a doclink that appears the same way as when you manually choose Create>Hotspot>URL or Create>Hyperlink but can't seem to find a way to do it?