Only plain text can be used in this type of field?

Hi, I have a text computed field by using @Dbcolumn form to get a column of data from a view, as the document increases in the view, so the data populated in the text field increases, thus, I got “Only plain text can be used in this type of field”, anybody knows how to solve this issue (warning message)? Thanks a lot,

Subject: Overflow

Hi,

look at this link for more explanation:

http://www.bizzybee.be/2010/11/16/only-plain-text-can-be-used-in-this-type-of-field/

Subject: tried this, but not working…

Hi,Thanks for the quick response, following the comments in that link, I tried to change the IsSummary to false by this code.

The error is still there, any other ideas? Thanks a log again,

Sub Querysave(Source As Notesuidocument, Continue As Variant)

Dim doc As NotesDocument

Dim item As NotesItem

Set item = source.Document.getfirstitem( "DocLibNameList")

item.IsSummary = False

Call source.Document.Save(False,True)

End Sub