L localhost Aug 22, 2004 #1 How to determine, through C# code only, if a particular DataTable already has a RowChanged, etc event already wired up? Thanks.
How to determine, through C# code only, if a particular DataTable already has a RowChanged, etc event already wired up? Thanks.
J Joyjit Mukherjee Aug 23, 2004 #2 Hi, Get the Events property of the datatable to get the list of event handlers subscribed for the datatable. What you'll get is an EventHandlerList delegate containing all the handlers. Regards Joyjit
Hi, Get the Events property of the datatable to get the list of event handlers subscribed for the datatable. What you'll get is an EventHandlerList delegate containing all the handlers. Regards Joyjit