Regarding NotesNoteCollection

Hi all,

I want to collect information like “lastmodified”, “inherit from design template”, “prohibit design refresh or replace”, “hidden from Notes/Web/Mobile” from design elements like “Agents”, “scriptlibraries”.

I believe that using notesNoteCollection we can build a collection and by using noteCollection.getFirstNoteID, noteCollection.getNextNoteID we can traverse through every design element.

The main thing i dont understand is, how i will find out the current design element is an “Agent” or say “Scriptlibrary”.

Most of the responses in this forum have indicated to search for a field called “$Title”. What exactly i have to search in the “$Title” field ?

Also, i have came accross some codes like “f3L”, “s34Q” etc, what is these codes ?

Does it means that the code “f3L” is meant for “Agents” ? and “s34Q” is meant for scriptlibraries ?

If so what will be the other codes for other design elements like “forms”, “subforms”, “pages”, “Views” etc.

Where can i find all the codes or reference for the same.

Anybody can please help me on this issue. I badly need this and im totally stuck !

Thanks in Advance,

Jack.

Subject: Regarding NotesNoteCollection.

Look up the examples on NotesNoteCollection in designer help. The basic concept is to build a collection of e.g. all agent design notes, by first setting the SelectAgents property to true and then call the BuildCollectio() method.

Then you can access those design notes and read or change whatever item you need to.