A Abhi Jan 6, 2004 #1 How do i save text in a RichTextBox Control to a SQL server Database and retrive it back without losing its formatting.
How do i save text in a RichTextBox Control to a SQL server Database and retrive it back without losing its formatting.
V Vijayakrishna Pondala Jan 6, 2004 #2 Save 'RichTextBox.Rtf ' into the DB and when retrieving, set the Rtf property of the RTB. Thanks, VijayaKrishna P.
Save 'RichTextBox.Rtf ' into the DB and when retrieving, set the Rtf property of the RTB. Thanks, VijayaKrishna P.
H Herfried K. Wagner [MVP] Jan 6, 2004 #3 * "Abhi said: How do i save text in a RichTextBox Control to a SQL server Database and retrive it back without losing its formatting. Click to expand... Save the contents of the control's 'Rtf' property. This property will contain the RTF code representing the document displayed in the control.
* "Abhi said: How do i save text in a RichTextBox Control to a SQL server Database and retrive it back without losing its formatting. Click to expand... Save the contents of the control's 'Rtf' property. This property will contain the RTF code representing the document displayed in the control.