30 pts.
 lotus notes export a complete list of fields
does anybody know how to generate a complete list of fields for a particular database?

I have heaps of fields and i'd like to print off the list for reference



Software/Hardware used:
ASKED: October 23, 2009  12:39 AM
UPDATED: October 27, 2009  10:37 PM

Answer Wiki:
From the Notes Help database (NotesForm class): This script displays the names of all the fields on a form. Dim session As New NotesSession Dim db As NotesDatabase Set db = session.CurrentDatabase formNameIn = Lcase(Inputbox("Name of form?")) Forall form In db.Forms If Lcase(form.Name) = formNameIn Then If Isempty(form.Fields) Then Messagebox form.Name & " has no fields" Else fieldCount = 0 msgString = "" Forall field In form.Fields fieldCount = fieldCount + 1 msgString = msgString & Chr(10) & _ " " & field End Forall Messagebox form.Name & " has " & _ fieldCount & _ " field(s):" & Chr(10) & msgString End If Exit Sub End If End Forall Messagebox "The form """ & formNameIn & """ does not exist"
Last Wiki Answer Submitted:  October 23, 2009  6:33 pm  by  Abushahd   3,225 pts.
All Answer Wiki Contributors:  Abushahd   3,225 pts.
To see all answers submitted to the Answer Wiki: View Answer History.


Discuss This Question:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _


 

What version of notes are you using?

 0 pts.

 

i’d really like to get all fields from the database not just one form

 30 pts.

 

i’m using notes 7.0

 30 pts.