Click to See Complete Forum and Search --> : WndClass.hCursor


kickerman
August 28th, 1999, 02:56 PM
How do i call a cursor, i have

WndClass.hCursor = LoadCursor(hInstance, MYCUR);



BUT, that returns 2 errors.
So, how do i call the cursor named "MYCUR"

kishk91
August 28th, 1999, 11:33 PM
is this cur is a resource????
if it is use

LoadCursor(hInstance,MAKEINTRESOURCE(MYCUR));

HTH
kishk