Create Notes Table By Using Script

Create Notes Table By Using Script

In Notes Client, I know many of us always want to create a dynamic Notes table
by using Lotus Script. But Lotus Script does not have any command to create a
Notes table. Yet, here is a work around! But it only works on R5.
1. Create a rich text field in the form
2. In the Post Open event, put the following script:

Dim sess As New NotesSession
Dim fileNum As Integer
Dim strFilePath As String

'use HTML to build the table
strHTML= "&LTtable border=1
width=100%>&LTtr>&LTtd>&LTb>Cell1</b></td>&LTtd>Cell2</td></tr>&LTtr>&LTtd>Cell3</td>&LTtd>Cel
l4</td></tr></table>"

'define a new unique HTML file name and file path
strFilePath = "C:\Temp\" + sess.CommonUserName +Cstr(Format(Now,
"yyyymmddhhmmss")) + ".html"


'Create File based on the file path and name above
fileNum% = Freefile()
Open strFilePath For Output As filenum%

'print the HTML to the HTML File
Print #fileNum, strHTML

'close the file
Close #fileNum

'import the file as HTML to the current form, and Notes R5 will automatically
convert HTML to Notes format, including table.
Call source.import("HTML", strFilePath)

'remove the HTML file that you just created.

    Requires Free Membership to View

    Register today to access targeted resources from our editorial writers and independent industry experts focused on Lotus Domino, Notes, Workplace and other related technologies.

    By submitting your registration information to SearchDomino.com you agree to receive email communications from TechTarget and TechTarget partners. We encourage you to read our Privacy Policy which contains important disclosures about how we collect and use your registration and other information. If you reside outside of the United States, by submitting this registration information you consent to having your personal data transferred to and processed in the United States. Your use of SearchDomino.com is governed by our Terms of Use. You may contact us at webmaster@TechTarget.com.


Kill strFilePath

So, now when you open the form, the HTML will be attached to the rich text
field in Notes format.

This was first published in November 2000

Disclaimer: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.