Hi hery2002,
LoadRTF methods need to provide the path of the file which you want to load(file not content).
Please change to
if (null != ds) Editor2.Text=ds.Tables[0].Rows[0]["COLUMN"].ToString();
-------------------------------------------------
Editor.LoadRTF Method
Loads the contents of a RTF file into the CuteEditor control.
[Visual Basic] Public Sub LoadRTF( _
ByVal
_filename As
String _
)
Parameters
_filename
The text file to load into CuteEditor
Example
editor1.LoadRTF("{\rtf1\........");
editor1.LoadRTF("~/doc/mtRTF.RTF");
Regards,
Ken