Rich edit data

In this category you can exchange your programming questions and solutions.
Post Reply
larryrl
Posts: 1
Joined: Tue Nov 08, 2005 3:00 pm

Rich edit data

Post: # 662Post larryrl
Thu Sep 16, 2010 3:36 pm

How do I get the typed data in arich edit control, into a string so I can save it to disk using a filesteam?

PaPi
Posts: 114
Joined: Wed May 16, 2007 11:55 am

Rich edit data

Post: # 663Post PaPi
Thu Sep 16, 2010 3:56 pm

So:

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


PaPi

Post Reply