Click here to Skip to main content
15,894,271 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: CRichEditCtrl problem [modified] Pin
xtexistenz19-Mar-07 12:55
xtexistenz19-Mar-07 12:55 
GeneralRe: CRichEditCtrl problem Pin
x87Bliss19-Mar-07 13:04
x87Bliss19-Mar-07 13:04 
GeneralRe: CRichEditCtrl problem Pin
xtexistenz19-Mar-07 13:10
xtexistenz19-Mar-07 13:10 
GeneralRe: CRichEditCtrl problem Pin
x87Bliss21-Mar-07 11:41
x87Bliss21-Mar-07 11:41 
GeneralRe: CRichEditCtrl problem Pin
xtexistenz25-Mar-07 13:51
xtexistenz25-Mar-07 13:51 
GeneralRe: CRichEditCtrl problem Pin
x87Bliss25-Mar-07 21:34
x87Bliss25-Mar-07 21:34 
GeneralRe: CRichEditCtrl problem Pin
xtexistenz26-Mar-07 7:21
xtexistenz26-Mar-07 7:21 
GeneralRe: CRichEditCtrl problem Pin
x87Bliss26-Mar-07 15:36
x87Bliss26-Mar-07 15:36 
Have you tried SetSel to move the caret to the end of the text, so this way it doesn't have to scroll it into position.

SetSel, I think that's the name, should take 2 parameters, the first selected character and the last selected character. If they are the same, then it just moves the caret to that position.

Should be something like...

int Length = GetLength();
SetSel(Length, Length);

SetSel may even have a third bool parameter too that tells it whether to scroll to the newly selected text.

Using SetSel and telling it to scroll to the newly selected text may even fix the other scrolling problem. Good Luck.
GeneralRe: CRichEditCtrl problem Pin
xtexistenz26-Mar-07 20:47
xtexistenz26-Mar-07 20:47 
Questionnetwork query Pin
lucy19-Mar-07 10:05
lucy19-Mar-07 10:05 
AnswerRe: network query Pin
Ravi Bhavnani19-Mar-07 10:19
professionalRavi Bhavnani19-Mar-07 10:19 
GeneralRe: network query Pin
lucy19-Mar-07 10:47
lucy19-Mar-07 10:47 
GeneralRe: network query Pin
Ravi Bhavnani19-Mar-07 11:01
professionalRavi Bhavnani19-Mar-07 11:01 
GeneralRe: network query Pin
lucy19-Mar-07 11:27
lucy19-Mar-07 11:27 
AnswerRe: network query Pin
David Crow19-Mar-07 15:09
David Crow19-Mar-07 15:09 
GeneralRe: network query Pin
lucy20-Mar-07 7:49
lucy20-Mar-07 7:49 
GeneralRe: network query Pin
David Crow20-Mar-07 7:59
David Crow20-Mar-07 7:59 
QuestionMFC formview Pin
anmllll19-Mar-07 9:46
anmllll19-Mar-07 9:46 
QuestionRe: MFC formview Pin
Maximilien19-Mar-07 10:27
Maximilien19-Mar-07 10:27 
AnswerRe: MFC formview Pin
ThatsAlok19-Mar-07 22:25
ThatsAlok19-Mar-07 22:25 
AnswerRe: MFC formview Pin
Hamid_RT20-Mar-07 3:00
Hamid_RT20-Mar-07 3:00 
QuestionWhat .dll is used to delete Internet Explorer cache? Pin
gacman19-Mar-07 9:24
gacman19-Mar-07 9:24 
AnswerRe: What .dll is used to delete Internet Explorer cache? Pin
Ravi Bhavnani19-Mar-07 9:29
professionalRavi Bhavnani19-Mar-07 9:29 
GeneralRe: What .dll is used to delete Internet Explorer cache? Pin
gacman19-Mar-07 10:24
gacman19-Mar-07 10:24 
GeneralRe: What .dll is used to delete Internet Explorer cache? Pin
x87Bliss19-Mar-07 12:54
x87Bliss19-Mar-07 12:54 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.