LotusScript to C API Programming Guide

rtLib Domino Rich Text Management template
Home
Show details for ContentContent
Purchase
Ready-to-use samples
Show details for Online resourcesOnline resources
Forum
Links
Happy readers

Anonymous

login


 

Hosted by Prominic.NET, Inc.
Main topic: Export selected rows from view

no this seems to be easy; or? (by Normunds Kalnberzins, 11/30/2006 03:14:03 AM)

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).