Hi to all,
I am facing a problem with the notes rich text navigator.
I have a configuration document in that iam having a rich text field.
I have created a table and added text into the table cells in rich text field. Now I want to connect to that richtext field and after getting connected I have to send in a mail .
Iam getting the table into the mail richtext body item, but when i try to get the handle of the table thru richtext navigator,its not connecting to the table.
Dim bool As Boolean
bool=rtnav.FindFirstElement(RTELEM_TYPE_TABLECELL)
Msgbox bool
Subject: RE: Problem with the notesrichtext navigator
The rich text classes don’t let you work with nested tables. I suspect the (profile?) form on which you entered the rich text, has the rich text field inside a table cell. Thus, the table inside the rich text is treated as a nested table.
Yes, I’m aware this doesn’t make sense. Nonetheless it is true. If you take the rich text field on your profile form outside the table, then edit the document again, you should be able to access the table in it with the Notes rich text classes.
However, if you just want to copy the contents of the field into the body of a memo, you don’t need to do all this. Just use AppendRTItem.