Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I create an edit control with:

HWND hwnd = CreateWindow( "EDIT", tabText.c_str(), WS_CHILD | WS_VSCROLL | ES_LEFT | ES_MULTILINE | ES_AUTOVSCROLL, ...)

Then I update its contents by calling SetWindowText(...). But every time the update completes the scroll is set to the beginning. I need to make it preserve its position. I write to this control a log. That means that the text string is getting bigger. I tried to get scroll info before calling SetWindowText() and set scroll info after the call. This results in a blinking of the control.

How can I preserve scroll position and view the text while it is updated?

share|improve this question
1  
Don't replace the text. Just append the new log text. – Raymond Chen Oct 5 '12 at 17:21
1  
Use EM_REPLACESEL to append text – David Heffernan Oct 5 '12 at 19:21

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.