Also wenn Du so direkt fragst, würde ich Dir den Tipp geben, Dir "notesUIView.CaretNoteID", "notesDatabase.UnprocessedDocuments" und "notesSession.DocumentContext" anzusehen. Eines der Properties sollte das sein, was Du brauchst.
Hier ist der Code:
Dim ws As New NotesUIWorkspace
Dim uiview As NotesUIView
Dim s As New NotesSession
Dim db As NotesDatabase
Dim doc As NotesDocument
Set uiview = ws.CurrentView
Set db = s.CurrentDatabase
Set doc = db.GetDocumentByID(uiview.CaretNoteID)
Messagebox doc.GetItemValue("Subject")(0),, "Current document is ..."
Geht ganz gut damit.
Gruß
Asim