Obtaining UIDoc from a Notes Document

I have a handle on a document in the backend, i.e. NotesDocument using LotusScript. I would like to then access this thru the frontend, i.e. NotesUIDocument. What’s the method I need to call to get the uidoc from the doc?

Subject: Obtaining UIDoc from a Notes Document

First off: You cannot “get” a NotesUIDocument object without actually opening (and that means displaying) it in the client. That’s when a uidocs starts to live.

To do so, have a look at the EditDocument method of NotesUIWorkspace.

Subject: Obtaining UIDoc from a Notes Document

Take a look at the EditDocument method of the NotesUIWorkspace class.

Subject: RE: Obtaining UIDoc from a Notes Document

Nevermind… I found another way to accomplish this. Thanks though!

Subject: RE: Obtaining UIDoc from a Notes Document

Eddie, just out of curiosity, what other way did you find to do that?