Using VB.Net (Windows Application)
Gridview and Textbox
When I enter the number or character in the textbox, that value should blink in the gridview.
For Example,
GridView has
ID Name
001 Jagan
002 Raman
003 Antony
........
.
When the following data is entered,
Textbox1.text = 01 (then ID:001 should Blink in Gridview),
Textbox1.text =Raman (then Name: Raman should Blink in Gridview)
How can I do this?
Need VB.Net Code. Please help.
It’s very simple.Add timer to your form,sets its interval to 100 millisecond and in timer1_Tick event toggles textbox appearance as below.
You can apply more specific designing style which would blink your textbox’s text.