LOTUSSCRIPT/COM/OLE CLASSES
Sub Initialize Dim session As New NotesSession Dim db As NotesDatabase Dim view As NotesView Dim vc As NotesViewColumn Set db = session.CurrentDatabase Set view = db.GetView("View A") Set vc = view.Columns(0) vc.IsResortAscending = NOT vc.IsResortAscending Messagebox "Resort ascending " & vc.IsResortAscending _ & Chr(13) & "Resort descending " & vc.IsResortDescending _ & Chr(13) & "Resort to view " & vc.IsResortToView,, _ "User-sorted column options" End Sub
See Also