M
Mr. X.
Hello.
I want to do by force : RowEnter event of DataGridViewObject.
I made a function on my code :
Public Sub ReEnter()
Invoke(New EventHandler(AddressOf dg_RowEnter))
End Sub
Where dg_RowEnter is the event :
Private Sub dg_RowEnter(ByVal sender As System.Object, ByVal e As
System.Windows.Forms.DataGridViewCellEventArgs) Handles Me.RowEnter
Why I don't reach the sub : dg_RowEnter, as I have described in the code
above?
Thanks
I want to do by force : RowEnter event of DataGridViewObject.
I made a function on my code :
Public Sub ReEnter()
Invoke(New EventHandler(AddressOf dg_RowEnter))
End Sub
Where dg_RowEnter is the event :
Private Sub dg_RowEnter(ByVal sender As System.Object, ByVal e As
System.Windows.Forms.DataGridViewCellEventArgs) Handles Me.RowEnter
Why I don't reach the sub : dg_RowEnter, as I have described in the code
above?
Thanks