| |||||||||||
Anonymous
![]() |
whats wrong with only looping only of "uprocessed documents"? Set doc = coll.GetFirstDocument While Not doc Is Nothing My Code(......) End If Set doc = coll.GetDocument(doc) Wend You mean you loose the document order or something? Then you could probably use NotesViewNavigator, NotesViewEntryCollection and that kind of objects. BTW, to make sure -- C API is not a patent solution to everything. Things you refer now are UI or Notes Client specific (such as selected docs or Notes viewer). There is a small part UI functionality exposed for use with menu add-ins; but that in any case requires a "real C" code; not just making some C API calls from your script (that is the spin of my book and this site).
|