Link to home
Start Free TrialLog in
Avatar of Jaziar
Jaziar

asked on

How would you Embed a document in a form for editing?

Is this possible, if so how would I go about doing it.

In my form I would like to Embed a word doc.  When a button is clicked the word doc opens the user then can edit the word document and then the word document is saved.  This way the user can open and print the word doc and make changes as needed.  It will be the same word doc for each document.  It would almost seem like the same attached file in every document, but I want them to be able to open and edit it.  The users are using R5 clients.  No web access only client access.

??
Avatar of cezarF
cezarF
Flag of Australia image

use a richtext field and embed a word doc as an OLE object
Avatar of Jaziar
Jaziar

ASKER

can you give me a little details please
ASKER CERTIFIED SOLUTION
Avatar of cezarF
cezarF
Flag of Australia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Jaziar

ASKER

In all my excited haste, I forgot to ask how you open it with a button?

I have tried @Command([ObjectOpen]) with no luck.

in LS. you can get the embedded object by using the NotesDocument.EmbeddedObjects property . this will return a NotesEmbeddedObject. to open the embedded word doc NotesEmbeddedObject.DoVerb("&Open"). check the verbs property of the NotesEmbeddedObject to list all supported verbs.
Avatar of Jaziar

ASKER

I am going to open a new question on this last question.