Hi,
im redbook zu Com und Domino (Com Together) oder so ähnlich steht das folgende:
COM access to Domino is only available for the Domino back-end
classes. It does not support any of the front end or user interface classes,
which include Button, Field, Navigator, NotesTimer, NotesUIDatabase,
NotesUIDocument, NotesUIView, NotesUIWorkspace
Mein kleines, amateurisches .vbs (noch nicht fertig) funktioniert aber prima
mit NotesUIWorkspace und NotesUIDocument:
Dim notesSession
Dim notesUI
Dim notesDB
dim notesStream
dim notesImporter
dim notesUIView
dim notesView
dim notesCol
dim notesDoc
dim notesUIDoc
dim notesAgent
'open and cleanup
Set notesSession = CreateObject("Notes.NotesSession")
Set notesUI = CreateObject("Notes.NotesUIWorkspace")
set notesDB = notesSession.getdatabase("LT0306IK-INTE/GRZInte_1806", "rz/vbm/office/office.nsf")
set notesView = notesDB.getView("ajaArchiveView")
set notesCol = notesView.getAllDocumentsByKey("doc")
set notesDoc = notesCol.getFirstDocument
if not notesDoc is nothing then
set notesUiDoc = notesUI.EditDocument(false, notesDoc, true)
notesUiDoc.print()
notesUiDoc.close()
end if
msgbox "Anzahl Dokumente in Collection:" + Cstr(notesCol.count)
Weiss jemand, seit wann es diese Unterstützung für UI-Klassen gibt, bzw. wo ich nachschauen kann, wann welches feature in Notes implementiert wurde.
Gibt es irgendeine Zusammenstellungen der Release Notes?
Gruß Axel