CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Feb 2001
    Posts
    2,455

    CListCtrl methods do not existing (Grouping)

    I wanted to add grouping to my CListCtrl and according to MSDN, CListCtrl has an InsertGroup(...) method. When I try to use this method, intellisense is not showing it and if I try to use it anyway I am told by the compiler that the method does not exist.

    I am using Visual Studio 2010 with the platform toolset v90 and MFC in a shared dll. Not sure what other information I can procide, but, why do I not have this functionality?

    Any offers of assistance?

    Mike

  2. #2
    GCDEF is offline Elite Member Power Poster
    Join Date
    Nov 2003
    Location
    Florida
    Posts
    12,637

    Re: CListCtrl methods do not existing (Grouping)

    If you look at its definition in the header file you'll see this before it.

    #if (_WIN32_WINNT >= 0x0501)

  3. #3
    Join Date
    Feb 2001
    Posts
    2,455

    Re: CListCtrl methods do not existing (Grouping)

    Quote Originally Posted by GCDEF View Post
    If you look at its definition in the header file you'll see this before it.

    #if (_WIN32_WINNT >= 0x0501)
    Yeah, I found that. Not on the header but somewhere on the net. I have it working.

    Thanks

    Mike

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