I copy all formatted rich edit text into clipboard as

m_edit.setsel(0,-1);
m_edit.copy();

But when I call GetClipboardData, I obtain text without format. Someone could explain to me something about this ?

link|improve this question
feedback

1 Answer

I think you are mistaken. The copy method sends a WM_COPY message to the control. This will place formatted text as well as plain text on the clipboard. Look through all the formats on the clipboard and you will find RTF is present.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.