Colored cursor became Black cursor in Vista
C / C++ / MFC
1
Posts
1
Posters
0
Views
1
Watching
-
Hi all, I am facing one problem with my application. I am using "hnwse.cur" by adding it into resource code is like
HCURSOR hDragCur = (HCURSOR)LoadImage(_AtlBaseModule.m_hInst, (LPCWSTR)MAKEINTRESOURCE(IDC_HAND_CURSOR),IMAGE_CURSOR, 28, 28, LR_DEFAULTCOLOR);
if(hDragCur)
SetCursor(hDragCur);This is working fine in Xp but in vista it is showing black hand cursor. Can any buddy please help me to resolve this problem. :confused: