Hi,
In the the my code,from MFC form, I call the ::Setfocus(hwnd) function to focus another windows application only once.
then i setfocus back to my MFC form.
my code like this:
Even though it's very fast but I still see the Title flicker.
Can I disable it without using the UnTitlebar form (by set property border none)?
Thanks you!
In the the my code,from MFC form, I call the ::Setfocus(hwnd) function to focus another windows application only once.
then i setfocus back to my MFC form.
my code like this:
Code:
HWND hwnd=getappHwnd(app);
::Setfocus(hwnd);
::Setfocus(this->m_hWnd);
Can I disable it without using the UnTitlebar form (by set property border none)?
Thanks you!