Page 1 of 1

Rich edit data

Posted: Thu Sep 16, 2010 3:36 pm
by larryrl
How do I get the typed data in arich edit control, into a string so I can save it to disk using a filesteam?

Rich edit data

Posted: Thu Sep 16, 2010 3:56 pm
by PaPi
So:

.
.
ofile.open(YourOutputFileName)
ofile.write(YourRicheditControl.text)
ofile.close


PaPi