TExtListView v2.02
------------------

These notes are still very sketchy, not much in the way of organization.

This should cover nearly all of the new list view stuff in the latest COMCTL32.DLL,
released in the last ActiveX SDK.

I'll be doing more of the new COMCTL32 stuff as time permits.  I just happened to need
this one right now.

You can get the ActiveX SDK from:
  http://www.microsoft.com/msdownload/activex.htm

Files in this archive:
  ReadMe.txt        You're looking at it.
  ExtListView.pas   The source code.

  Demo.dpr \
  Demo.res  \_____  Demo project showing the new functionality, except for "virtual"
  Main.dfm  /       mode and a few other things.
  Main.pas /

  VMDemo.dpr \
  VMDemo.res  \____ Demo project showing the new "virtual" mode.  Has very rudimentary
  VMMain.dfm  /     caching, which is probably worse than none.  Strictly for example.
  VMMain.pas /

Files in COMCTL32.ZIP (http://www.pobox.com/~bstowers/delphi/mine/files/comctl32.zip):
  ComCtl32.dll      The redistributable DLL from MS that supports the new functionality.
  CommCtrl.h        The include file distributed with the last ActiveX SDK.
  Chapter 11.doc    An excerpt from the ActiveX CommCtrl update document describing
                    changes in ComCtl32.dll as pertains to list views.


Please look it over well.  Comments about "Delphi-ness" are encouraged.  For example, all
of the virtual mode events (OnOD*) pass the common control structures instead of breaking
it out into just the parts needed, and the ODGetDispInfo is particularly cryptic for
those uninitiated in the ways of the API.  Comments about the final format of these
event procedures would be helpful in particular.

Not Done Yet:
  Custom Draw, because I haven't had time to look at it yet.
  A couple of other minor items that I forget now.
  Help file.  This one really needs a Delphi-style help file to cover all the new stuff.
    If anyone has one of those help generators and would like to take a crack at it, I
    and everyone else would be very much in your debt.  I've never got one of the because
    I refuse to pay $25-$100 for a tool to document my free ($0) components.

