It is possible to write forumla which will create a document ?For example have form with 2 fields
and button in some page
And i want evrytime i click a button to make document with this field (not show form).
Thx
It is possible to write forumla which will create a document ?For example have form with 2 fields
and button in some page
And i want evrytime i click a button to make document with this field (not show form).
Thx
Subject: dynamicly making documents
To create a document and not have it appear in the UI, use LotusScript.
You can use the NotesDatabase class to create a document in the database, then populate any fields you need.
As in…
Dim session As New NotesSession
Dim db As NotesDatabase
Dim doc As NotesDocument
Set db = session.CurrentDatabase
Set doc = db.CreateDocument
doc.Form = “My Form Name”
doc.Subject = “Some Value Goes Here”
Call doc.Save( True, True )