Thread: This is a MFC beginner prog. but ...

  1. #1
    Registered User
    Join Date
    Apr 2004
    Posts
    29

    This is a MFC beginner prog. but ...

    ...I supposed that cursors would have to change by timer "pulses"...but don't! why?
    please take a look to the attachment ....thanx for any help!

  2. #2
    Registered User
    Join Date
    Aug 2003
    Posts
    470
    The problem with your code is that your using the deprecated IDC_HAND and a few others.

    IDC_ARROW Standard arrow cursor
    IDC_IBEAM Standard text-insertion cursor
    IDC_WAIT Hourglass cursor used when Windows performs a time-consuming task
    IDC_CROSS Cross-hair cursor for selection
    IDC_UPARROW Arrow that points straight up
    IDC_SIZE Obsolete and unsupported; use IDC_SIZEALL
    IDC_SIZEALL A four-pointed arrow. The cursor to use to resize a window.
    IDC_ICON Obsolete and unsupported. Use IDC_ARROW.
    IDC_SIZENWSE Two-headed arrow with ends at upper left and lower right
    IDC_SIZENESW Two-headed arrow with ends at upper right and lower left
    IDC_SIZEWE Horizontal two-headed arrow
    IDC_SIZENS Vertical two-headed arrow
    Last edited by okinrus; 06-25-2004 at 03:51 AM.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. WIndows programming?
    By hostensteffa in forum Windows Programming
    Replies: 7
    Last Post: 06-07-2002, 08:52 PM
  2. Release MFC Programs & Dynamic MFC DLL :: MFC
    By kuphryn in forum Windows Programming
    Replies: 2
    Last Post: 05-18-2002, 06:42 PM
  3. Beginning MFC (Prosise) Part III - Now What? :: C++
    By kuphryn in forum C++ Programming
    Replies: 5
    Last Post: 03-03-2002, 06:58 PM
  4. MFC Dialogue based Prog NEED HELP PLEASE
    By frgmstr in forum Windows Programming
    Replies: 4
    Last Post: 02-13-2002, 04:23 PM
  5. MFC is Challenging :: C++
    By kuphryn in forum C++ Programming
    Replies: 8
    Last Post: 02-05-2002, 01:33 AM