RE: Win32Lib: ListView Checkbox Event
- Posted by "Andrew Hall" <barnacle83-euforum at yahoo.com> Aug 02, 2004
- 451 views
Derek Parnell wrote: > cklester wrote: > > > > What event is triggered when I click a checkbox in a ListView? Or, > > how do I determine that a checkbox in a ListView was toggled? > > > > A w32HChange event. The 'parms' parameter in the event handler receives > a sequence with a whole lot of info. I can't remember all the flag/mask > values just now, but experiment but inpsecting the values you do receive. > > The parms sequence should contain... > { > Row number, > Column number, > NewState, > OldState, > MouseX, > MouseY, > UserDataValue > } Is this the same for TreeViews, too? Andrew