Launching View from a Subform

Hi Everybody!

I’m trying to put a view in a dialogbox, through a subform. My intention is get all checked entries in this view and make an action, like changing a field value from all checked entries.

I’m having trouble to concretize this idea with lotus notes. I don’t know if is possible get check view’s values form a dialogbox with lotusscript.

Do you have any idea how I can realize this?

Thanks in advance.

Subject: Another approach you could take…

If you still want to be able to display an embedded view (e.g. you have extra columns of info that you want the user to see, or you want to return more than just one set of values), another approach you could try is to put an action button in the embedded view that uses the UnprocessedDocuments property to process what the user has selected, and store the data in a temporary document that you pass to the DialogBox method.

Subject: Try this…

Use the DialogoBox method of teh NotesUIWorkspace calss to display a form as a dialog box.

Set that form to load the values of the view into a multi-value ListBox field. ’

Then the user can select one or more items in that list.

When the dialog box is closed, just pass the selected values back to the calling function, and you can then do whatever you like with them.

Subject: Thanks

Thank you so much!