Remove the rtf information from the rte contentTag(s): Powerscript

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 support for this Web site and its content.

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