Hi.
I need to know all events that can be generated in a datagridview. In
particularly I'd like to find a list describing the dependencies of
each event.
In Exemple: first there is a rowValidating, second a rowValidated and
finally a selectionChanged (naturally there are a lot of others events
inside).
Thank you very much.
JoZ,
Have you looked at the documentation for the DataGridView class? All
the possible events that can be fired are listed there.
As for the order that they are fired in, the documentation should be
able to shed some light, but in general, anything ending with "ing"
indicates that the event is fired while it is happening, whereas anything
ending in "ed" means that the action happened already.

Signature
- Nicholas Paldino [.NET/C# MVP]
- mvp@spam.guard.caspershouse.com
> Hi.
>
[quoted text clipped - 7 lines]
>
> Thank you very much.