How to get the list of fileds for the particular form?

I’d like to get a list of fields for the particular form using Formula language. Is it possible?

Subject: How to get the list of fileds for the particular form?

@DocFields lists all the fields in a document. I don’t think there’s a function that returns the fields in a form. You need LotusScript for that.

Subject: RE: How to get the list of fileds for the particular form?

Thanks… Is there a way to get the list of fields in the whole DB?

Subject: RE: How to get the list of fileds for the particular form?

Thanks… Is there a way to get the list of fields in the whole DB?

I’d say the only way you’re going to do that is to iterate through NotesDatabase.Forms, grabbing the fields from each – NotesForm.Fields – and adding to one big array or whatever. Either that or use an analysis tool of some sort (design synopsis, some DXL or TeamStudio Analyser).

HTH

Subject: How to get the list of fileds for the particular form?

why not just use the design synopsis and point it at the form?