Put a Doclink in a View?

Hello,

I have an application that is searching several databases and returning/building the results in an embedded view on my search form.

Is there any way to include to include a Notes (doc)Link in a column on the embedded view on my search form? The link itself would be in a Rich Text type I would assume.

Thanks for any help.

Subject: there is no rich text in a view.

I assume you want to open a document other than the one displayed in the view? You could write view Queryopendocument code in LotusScript to refuse to open the document, and instead open a different document.

Or, rather than using an embedded view, you could display your search results in rich text form – then you can insert real doclinks. See Update rich text tip for displaying this on a search UI document that’s already open. Rich Text article in The View and Domino Designer 6 A Developer’s Handbook chapters on rich text programmability, help you format and fill in your table.

I always get nervous when someone says they’re displaying search results in an embedded view (or folder) because this is an expensive and sometimes dangerous way to display search results. How do the matching documents get into the view? You’d better not say that you use NotesView.SelectionFormula to change the view to display the matching documents.

Subject: Ended up not needing

I ended up not needing the doclink in the view. Thanks for your response.