59 | NotesView.AllDocuments property for LotusScriptMelissa Snell1756 - 12 2008 (1) I would like an 'AllDocuments' property that would return all documents in the NotesView. This would work in a similar way to the "AllEntries" property for the NotesViewEntryCollection.
So you would be able to code:
Set view=db.getView("MyView")
Set col=view.AllDocuments
etc. |
40 | Enforce (or advise) the need for a default viewIf a database does not have a default view specified (which is easily done), certain areas of functionality don't work as intended -- especially when it comes to document collection operations (e.g. code that generates doclinks). A co-worker recently encountered a particularly nasty issue in which looping a document ... |
19 | Select Multiple Documents in the view using LSOndrej Kostruh1103 - 28 2010 (3) It will be very helpful if I can use something like: NotesUIView.SelectDocuments( coll as NotesDocumentCollection ) which marks all documents from the collection with selection marks. Or if I can iterate the collection with NotesUIView.SelectDocument( doc, True) - which means don't move just caret, but add selection mark ... |
5 | Remove Err=4469 from NotesDocumentCollection.AddDocument methodI propose that it's method returns the result as Boolean, is quite enough. It is better add to Desinner Help describe the situations where the method may return False, and this:
Generating the error ... |