views:

18

answers:

1

What events are fired when .SelectAll() is called on a DataGridView? I want to intercept some cell selection without having to inherit another DataGridView and override the SelectAll() method.

+1  A: 

It turns out that SelectionChanged is fired after much troubleshooting. It would help if the MSDN documentation told you that when it details the SelectAll method.

0A0D
I remember in VC++6 there was a way that you could capture all events as a program was running. Did you use a similar tool?
John at CashCommons
Nope.. just traversed the list of events the hard way and put a messagebox until I got a hit. There has to be a better way
0A0D