Hello to all
I am trying to make a No-Move dialog.
This is my code:
The dialog keep on moving when I drag it with mouse!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);
Someone can help me?
Thank you!

