I cannot add any text to a RichTextEdit control, I try:
rte_1.SelectTextAll()
rte_1.Clear()
ls_richtext = "Hello"
rtn = rte_1.PasteRTF(ls_richtext)
but nothing is been added to the control.
I try:
rte_1.SelectText(2,1, 0,0) instead of rte_1.SelectTextAll()
rte_1.PasteRTF(ls_richtext, Detail!) instead of
rte_1.PasteRTF(ls_richtext)
but is not working, any help is appreciated.
rte_1.SelectTextAll()
rte_1.Clear()
ls_richtext = "Hello"
rtn = rte_1.PasteRTF(ls_richtext)
but nothing is been added to the control.
I try:
rte_1.SelectText(2,1, 0,0) instead of rte_1.SelectTextAll()
rte_1.PasteRTF(ls_richtext, Detail!) instead of
rte_1.PasteRTF(ls_richtext)
but is not working, any help is appreciated.