Richeditctrl displayed with Selection on
C / C++ / MFC
3
Posts
2
Posters
0
Views
1
Watching
-
Hi, I am reading a text file into my richedit ctrl via Streamin call back function When I finish processing the files the Text is displayed in the RichEdit as if I had entered "SELECT ALL" from an Edit menu selection ... thsnk
I would say yes to your statement, when you finished reading, the whole text is selected. I suspect that your question is, how to unselect the text. Therefor call
SetSel( 0, 0);
member function of yourCRichEditCtrl
derived control after finishing reading. -
I would say yes to your statement, when you finished reading, the whole text is selected. I suspect that your question is, how to unselect the text. Therefor call
SetSel( 0, 0);
member function of yourCRichEditCtrl
derived control after finishing reading.