Hallo,
habe einen Ordner "Suche" in diesen werden die Dokumente von einer Collection eingestellt. Vorher soll dieser noch geleert werden.
Bekomme leider eine Fehlermeldung: Object variable not set
Für einen Tipp wäre ich dankbar.
Dim session As New NotesSession
Dim ws As New NotesUIWorkspace
Dim db As NotesDatabase
Dim view As NotesView
Dim uidoc As NotesUIDocument
Dim dc As NotesDocumentCollection
Set db = session.CurrentDatabase
Set ws = New notesuiworkspace
Set uidoc = ws.currentDocument
If uidoc.fieldGetText("SucheKK") = "" Then
Messagebox "Keine Suchkriterium angegeben" , 0 + 16, "Fehler"
Exit Sub
End If
Dim keys(1) As String
keys(0) = uidoc.fieldGetText("Bestand")
keys(1) = uidoc.fieldGetText("SucheKK")
If uidoc.fieldGetText("DSuche") = "Kunden-Nr.(alt)" Then
Dim foldercollection As notesdocumentcollection
Dim folderview As notesview
Set folderview = db.GetView("Suche")
Set vc = folderview.AllEntries
Call foldercollection.RemoveAllFromFolder( "Suche" )
End If
......