Hello to all
I am trying to make a No-Move dialog.
This is my code:
Code:
hWndDlg= CreateDialog(hInstance, MAKEINTRESOURCE(IDD_CREAREQ), hWnd, (DLGPROC) DlgCreaReqProc) ;
ShowWindow(hWndDlg, SW_SHOW);
UpdateWindow(hWndDlg);
SetWindowPos(hWndDlg, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOMOVE|SWP_NOSIZE);
The dialog keep on moving when I drag it with mouse!

Someone can help me?

Thank you!