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

Thread: Cursors

  1. #1
    Join Date
    Mar 2000
    Posts
    123

    Cursors

    Looking to change cursor to hourglass while a function is executing, then turn it back to the default cursor.

    Also need to change cursor to different cursor when hovering over a list item.

    Thanks!


  2. #2
    Join Date
    Sep 2000
    Posts
    3

    Re: Cursors

    setCursor(Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR));
    setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR));


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