PRB: Inter-thread SetWindowText() Fails to Update Window TextLast reviewed: September 29, 1995Article ID: Q125687 |
The information in this article applies to:
SYMPTOMSCalling SetWindowText() to set a static control text from a thread other than the one that created the control fails to display the new text in Windows 95.
CAUSEWhen SetWindowText() is called from another thread, instead of sending a WM_SETTEXT message to the appropriate window procedure, only DefWindowProc() is called, so the edit and static controls do not paint the control appropriately because the appropriate code is never executed, so the text on the screen is never updated. In other words, calling SetWindowText() updates the buffer internally, but the change is not reflected on the screen.
RESOLUTIONOne obvious workaround is to refrain from calling SetWindowText() from another thread, if possible. If design considerations don't allow doing this, use one of these workarounds:
STATUSThis inter-thread SetWindowText() behavior is by design in Windows version 3.x. It was maintained in Windows 95 for backward compatibility purposes. Applications written for Windows version 3.x can expect their inter-thread SetWindowText() calls to behave as they did in Windows version 3.x.
MORE INFORMATIONCalling SetWindowText() from another thread in Windows NT displays the window text correctly, so it works differently from Windows 95.
|
Additional reference words: 4.00
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |