CEdit update
-
How to disable temporarily update in CEdit? I want to change some text with ReplaceSel() method but it scrolls to inserted position. But u do not need it. My CEdit flicks because of that. In other words i want to change the text, which is not displayed at current view, without scrolling.
-
How to disable temporarily update in CEdit? I want to change some text with ReplaceSel() method but it scrolls to inserted position. But u do not need it. My CEdit flicks because of that. In other words i want to change the text, which is not displayed at current view, without scrolling.
SLiDeR wrote: How to disable temporarily update in CEdit? Is
CWnd::EnableWindow()
what you are looking for? SLiDeR wrote: My CEdit flicks because of that.CWnd::SetRedraw()
might help. -
SLiDeR wrote: How to disable temporarily update in CEdit? Is
CWnd::EnableWindow()
what you are looking for? SLiDeR wrote: My CEdit flicks because of that.CWnd::SetRedraw()
might help.