Jump to Real's How-to Main page

Remove the rtf information from the rte content

To transfer the rte control to mle control, try this :
String ls_temp
rte_1.SelectTextAll()
ls_temp = rte_1.SelectedText()
mle_1.Text = ls_temp
or use the clipboard
rte_1.SelectTextAll()
rte_1.Copy()
mle_1.Paste()

If you find this article useful, consider making a small donation
to show your supportfor this Web site and its content.

Written and compiled by Réal Gagnon ©1998-2005
[ home ]