Did some searches on merging cells within a table but it didnt give back any good results. Does anyone know how? They have some examples of how to build tables in a rtf and how to populate but I want more control.
My goal is to send some results to some users via an agent and have it formatted nice.
Heres what i plan to use to populate it:
Set emaildoc = New NotesDocument(s.CurrentDatabase)
Set rtf = New NotesRichTextItem(emaildoc, "Body")
emaildoc.form = "memo"
emaildoc.subject = "Tech Log Summary"
emaildoc.sendto = "CN/OU/C"
columnCount% = 3
Call rtf.AppendTable(rowCount%, columnCount%)
Dim rtnav As NotesRichTextNavigator
Set rtnav = rtf.CreateNavigator
Call rtnav.FindFirstElement(RTELEM_TYPE_TABLECELL)
For iRow% = 1 To 4 Step 1
For iColumn% = 1 To 3 Step 1
Call rtf.BeginInsert(rtnav)
Call rtf.AppendText("Row " & iRow% & ", Column " & iColumn%)
Call rtf.EndInsert
Call rtnav.FindNextElement(RTELEM_TYPE_TABLECELL)
Next
Next
emaildoc.body = soutput
emaildoc.Send False