Examples: GotoLastDocument and GotoPrevDocument methods

This Visual Basic code (GotoLastPrevDocument_Click Sub) gets all the document entries in a view from last to first.

Dim s As New NotesSession
Dim db As NotesDatabase
Dim v As NotesView
Dim n As NotesViewNavigator
Dim e As NotesViewEntry
Dim lastPosition As String
Private Sub GotoLastPrevDocument_Click()
InitializeNav_Click
lastPosition = ""
Call n.GotoLastDocument
Set e = n.GetCurrent
While e.GetPosition(".") <> lastPosition
  MsgBox e.Document.GetItemValue("Subject")(0), , "Document"
  lastPosition = e.GetPosition(".")
  Call n.GotoPrevDocument(e)
  Set e = n.GetCurrent
Wend
End Sub
Private Sub InitializeNav_Click()
Set s = New NotesSession
s.Initialize
Set db = s.GetDatabase("", "Web test")
Set v = db.GetView("By Category")
v.AutoUpdate = False
Set n = v.CreateViewNav
End Sub