Sub Initialize
Dim session As New NotesSession
Dim db As NotesDatabase
Dim view As NotesView
Dim entry As NotesViewEntry
Set db = session.CurrentDatabase
Set view = db.GetView("By Category")
Set entry = view.Getentrybykey("Cars")
Messagebox entry.Universalid
End Sub
Sub Initialize
Dim session As New NotesSession
Dim view As NotesView
Dim vc As NotesViewEntryCollection
Set db = session.CurrentDatabase
Set view = db.GetView("Stock")
Set vc = view.GetAllEntriesByKey("Spanish leather", False)
Call vc.PutAllInFolder("Boots")
End Sub