Hi,
SelectDocument liefert mir die Meldung "Command is not available". Der View wird als Embedded View in einem Dokument dargestellt. Die Messagebox zeigt an, dass das Zieldokument als Objekt vorhanden ist. Der Fehler scheimt das source.SelectDocument zu sein. Funktioniert dieser Befehl nicht in Embedded Views?
Viele Grüße,
Michael
Sub Postopen(Source As Notesuiview)
Dim session As New NotesSession
Dim db As NotesDatabase
Dim doc As NotesDocument
Set db = session.CurrentDatabase
Set doc = db.GetDocumentByUNID("C12C9036FDCABA79C12574880073F7DA")
Messagebox doc.GetItemValue("fl_CliCo")(0)
Call source.SelectDocument(doc)
End Sub