Page 1 of 1

Save richedit to field

Posted: Sat Jul 27, 2019 9:54 am
by Marc Vanzegbroeck
Hi,

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

vtext = oRich:SaveAsRTF
Than save it

Code: Select all

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

Re: Save richedit to field

Posted: Sat Jul 27, 2019 10:52 am
by Marc Vanzegbroeck
I solved the problem.
I had to do a hextostr() when reading back the info