Click here to Skip to main content
16,004,828 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi,

I am having a textbox in last column and each row of gridview, a function is called on this textbox textchanged event. Now, I want to call the same function when a user presses tab key on enter key on this textbox in gridview (each gridview row).

plz help
Posted

1 solution

For tab key press call textbox Enter event.
Example:
VB
Private Sub TextBox1_Enter(ByVal sender As Object, ByVal e As System.EventArgs) Handles TextBox1.Enter

   End Sub

C#

 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900