Hi,
delete this event declaration, and add new one by selecting listview name in
class module top left combo, and then select event name in right combo. both
comboboxes are on the top of form's class module window

Signature
Alex Dybenko (MVP)
http://alexdyb.blogspot.com
http://www.PointLtd.com
> Hi,
> I've not be able to get the column header click event to work when
[quoted text clipped - 16 lines]
> Thanks
> John
jrad - 21 Mar 2006 00:52 GMT
Hi,
Many, many thanks.
The crucial bit is the formal parameter's type of Object
Private Sub lvwDB_ColumnClick(ByVal ColumnHeader As Object)
I had found a workround by using WithEvents on a module variable, and
now I see why that worked, as it was of type Object.
Thanks again.
John