Is there a way to call th handler of the event DoubleClickRow?
Something similar like PerformAction?
thank you
Hi,
its already like that: Inside the DoubleClickRow event there is a call to method.
I'm not able to call the method inside the DoubleClickRow event because it private and i'm in another class that has some util methods.
anyway, I'll find another solution...
thanks
No, PerformAction is typically for keyboard actions taken by the user.
An event handler is a method, just like any other. So you could call it directly. But this is generally considered to be poor programming practice. The better thing to do is take the code from your DoubleClickRow event and make a method out of it. Then you can call that method from the DoubleClickRow event and also from anywhere else you need it.