2002/03/04:
The project manager tabs and the "cursor problem".
BOOL CWinApp::OnSetCursor(HWND, UINT nHittest, UINT){
if (nHittest == HTCLIENT) {
if (MainSplitter.OnSetCursor(_hWnd, 0)){
return 0;
}else if (ChildSplitter.OnSetCursor(_hWnd, 0)){
return 0;
}else{
::SetCursor(::LoadCursor(NULL, IDC_ARROW));
}
}
return 0;
}