hi
If we call WindowUpdate function or other window managing messages of a same window in several threads is safe?
For example in main thread creates the main frame window and in a worker threads (more than one) we call theApp.m_pMainWnd->UpdateWindow or for a child window like list view ctrl call RedrawItem. (to show the user progress of current operation in threads)
If is not safe what is safe way? I know can use a timer on main window or using PostMessage but is there a better way?
Thanks