calling datagridview double click event on button click
C#
2
Posts
2
Posters
0
Views
1
Watching
-
hi guys! need some help again.. how can i call datagridview double click event on button click of a form.. abhinav
No matter how hard you try, the CLR won't let you raise an event from an object which does not expose that event. That's just the way it is. Why do you want to do that, anyways? Could you not accomplish whatever it is you're attempting to do by calling the method which executes when the DoubleClick event is raised (instead of raising the event)? Josh