I’m building a machine configurator using lotusscript that at some point copies in a pre-formatted table into a doc and appends text depending on the configuration choices. This works fine. Now I want to copy in rich text (need the formatting & pics), but there seems to be a problem trying to insert rich text within a table after the BeginInsert (code snip below). I’ve verified this checking the forum.
Has anyone tried this in version 7? Any alternatives?
Call MachItem.BeginInsert(mtnav)
’ add Description
If (mRow% = 4) And (mColumn% = 2) Then
Call MachItem.AppendText(desc.Values(0)) ’ works
’ Call MachItem.AppendRTItem(desc) ’ does not work