asked on
ASKER
ASKER
Lotus Software produced the Lotus 1-2-3 spreadsheet program, and later developed Lotus Notes, a groupware and email system. Following its acquisition by IBM, the Notes and Domino client/server collaborative platform were expanded to include functions such as email, calendars, to-do lists, contacts management, teamrooms, discussion forums, file sharing, microblogging, instant messaging, blogs, and user directories. IBM also release SmartSuite, a comprehensive office suite, and followed that with Symphony, unrelated to the Lotus suite of the same name.
TRUSTED BY
Dim s as new notesSession
Dim db as notesDatabase
Set db = s.currentDatabase
Dim fields as Variant
fields = db.getFields(false)
forall fieldname in fields
print "Field: " fieldName "
" 'had put in F instead of fieldname, which resulted in blank field names!
end forall
print "
"
Forall form in db.forms
print "
" form.name "
"forall formField in form.fields
print form.name " contains field " formField "
"
end forall
end forall
Comment from RanjeetRain Date: 06/12/2003 06:59AM EST
But why do u wanna do it programatically? Why not use built in Synopsis feature of Lotus Domino? Do you have a solid reason why you wanna do this programatically?
Comment from qwaletee Date: 06/12/2003 12:03PM EST
raneet,
He already explained, he wants to build a data dictionary. It would be a real pain to extract from a synopsis the information needed to build dictionary table.
Of course, jagre or teamstudio does all that for you, but you have to buy the package!