hi, Do you know How to change the cursor in a form?
Here is the simple tips for changing the cursor.
Add the WM_SETCURSOR message handler .
LRESULT OnSetCursor(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled)
{
//HICON hIconBang = LoadCursor(0,MAKEINTRESOURCE(IDC_LEFTC)); // pApp->LoadCursor( IDC_BANG );
HCURSOR h=::AfxGetApp()->LoadCursor(IDC_LEFTC);
::SetCursor( h );
return 0;
}
thanks
