Move documents question

Hi

I am writing a database to keep record of which training a specific employee has done where. I am basically finished and would now like to create a dialog where the user can move employees from one course to another. What I envisioned was something along the lines of the address dialog - the dialog is split into 2 - at the top of each side you select the course via dropdown and you then see the people who are enrolled for this course (embeded single category views). You then move the people from the left course to the right course via selection and pressing buttons in the middle of the form.

The problem is that I cannot get the selected documents of the embedded view when the user presses the button on the form / page.

I have played around with this for a couple of days now but cannot get it to work. Anybody has an example database that they would care to share ;o)

Thank you in advance

Ursus

Subject: move documents question

Hi,

here an idea for a little workaround. Write a view action in the left embedded view and use NotesDatabase.UnprocessedDocuments and you get your sourcedocs.

After you copied or modified these docs and specified the single category key for the right embedded view, just call NotesUIWorkspace.ViewRefresh and your (new) docs will appear in the right window.

I hope so…