I want to edit a text in richedit, and than save it to a database field.
Later I want to be able to edit again, but I cound wake it work.
I get the text with
- Code: Select all Expand view
- vtext = oRich:SaveAsRTF
Than save it
- Code: Select all Expand view
- repl tekstlengt with HB_CompressBuflen( Len( vtext ) )
repl tekst with HB_Compress( vtext )
for users with SQL than I do a replace with "'0x"+STRTOHEX( tekst )
But when I want to read it back with HB_Compress() , the text is empty.
I use this method also for other things, and that is working.
How can I set the text back into the richedit?
I use oRich:LoadRTF( tekst ), but it's not working