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

Thread: ListView Blues

  1. #1
    Guest

    ListView Blues

    I am trying the Sortlist example found at CodeGuru. On my Win98 VC++ 4.2 program compiles fine. However I can not find any help on the following line. On Win 95 system w/ same compiler it does not compile saying

    error C2065: 'ListView_SetExtendedListViewStyle' : undeclared identifier

    What is the workaround. Is there a system dll, that this function is implemented in?

    Any help is appreciated.

    [email protected]


  2. #2
    Join Date
    Apr 1999
    Location
    Bangalore, India
    Posts
    25

    Re: ListView Blues

    For using the extended styles, you need a common control DLL that is used by internet explorer ver 4.0 onwards. Check for ListView_SetExtendedListViewStyle in the file commctrl.h. If the entry is not there, you may have to install a later version of internet explorer.


  3. #3
    Guest

    Re: ListView Blues

    I have vers. 4. on the Win95 machine. However that is a good enough lead that I can follow. Thank you so much for your help.

    yalcin


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