01-13-2006, 08:06 PM
I would try the following:
int hwnd=CreateWindowEx(0 "#32770" 0 ...) to create temporary window and make it active;
SetCapture(hwnd) to capture the mouse;
SetCursor(LoadCursor(0 IDC_WAIT));
wait;
SetCapture(0);
DestroyWindow(hwnd).
int hwnd=CreateWindowEx(0 "#32770" 0 ...) to create temporary window and make it active;
SetCapture(hwnd) to capture the mouse;
SetCursor(LoadCursor(0 IDC_WAIT));
wait;
SetCapture(0);
DestroyWindow(hwnd).
