How to bring window to top with SetForegroundWindow()






3.50/5 (2 votes)
At first site, you can use BOOL WINAPI ShowWindow(__in HWND hWnd,__in int nCmdShow); with SW_RESTORE in nCmdShow (msd link) and maybe it needs to activate window before (not tested :))
At first site, you can use
BOOL WINAPI ShowWindow(__in HWND hWnd,__in int nCmdShow);
with SW_RESTORE
in nCmdShow
(msd link) and maybe it needs to activate window before (not tested :))