Why I get this error:Notes Error - Paragraph or field cannot be larger than 64K bytes in line 602.
In this line (602) I scripted that:
If info_about_changes <> “” Then
(601) newHistory$ = info_about_changes & Chr(10) &
Source.FieldGetText("History")
(602) Call Source.FieldClear(“History”) ???
Call Source.FieldAppendText( "History", newHistory$)
End If
Field “History” is a RichText. I know what cannot insert programmicaly in such fields larger than 64 KBytes. But in my case take place just clearing of field.
What is wrong in my script?