Hi reader
How to refresh selected Documents in the View ?
Below coding not work
Sub Initialize
' ~~ Using Backend class change Name Fields, 2005/06/17
' doc
Dim session As New NotesSession
Dim db As notesDatabase
Dim dc As NotesDocumentCollection
Dim doc As NotesDocument
Dim j As Long
Dim uidoc As NotesUIDocument
Set db = session.CurrentDatabase
Set dc = db.UnprocessedDocuments
Dim newName As String
Dim tmpValue As String
Dim nItem As NotesItem
Dim ChangeFieldName As String
For j = 1 To dc.Count
'~~ set Doc Object
Set doc = dc.GetNthDocument(j)
'~~ Get Old Name
Call doc.Save(True,True)
Next
End Sub

Refresh selected documents in the v... (Great Eric 27.Jan.06)
. . 