CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Aug 1999
    Posts
    1

    WndClass.hCursor

    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"


  2. #2
    Join Date
    Jul 1999
    Location
    Israel
    Posts
    1,793

    Re: WndClass.hCursor

    is this cur is a resource????
    if it is use

    LoadCursor(hInstance,MAKEINTRESOURCE(MYCUR));

    HTH
    kishk



Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured