Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How do i list design elements programmatically

Status
Not open for further replies.

imtechie

Programmer
Apr 29, 2007
3
US
I need to list the domino design elements like forms, form fields and views programmatically. I want to create a document which will contain all the form names, form-field names and view names in the Notes/Domino .nsf database

Any ideas much appreciated.

thanks.
 
Well that shouldn't be all that difficult. Just use script and access the NotesDatabase object from the current session.

When you've got that, you can go to the various elements of the NotesDatabase object : Forms, Views and Agents. Within Forms, you'll find an array of NotesForm objects containing Fields. Within Views, you'll find an array of NotesViewColumns, etc.

With each array, you "just" need to do a Forall itemvar in array and step through what you want to extract.

Have fun !

Pascal.


I've got nothing to hide, and I'd very much like to keep that away from prying eyes.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top