Click to See Complete Forum and Search --> : ListView Blues


June 3rd, 1999, 08:59 AM
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.

yalcin@ioflex.com

Vicky
June 4th, 1999, 12:22 AM
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.

June 4th, 1999, 07:04 AM
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