选定的值出现在网格视图中
使用 VB.Net(Windows 应用程序)
Gridview 和文本框
当我在文本框中输入数字或字符时,该值应该在 gridview 中闪烁。
例如,
GridView 有
ID Name
001 Jagan
002 Raman
003 Antony
........
. 当输入以下数据时, Textbox1.text = 01(然后ID:001应该在Gridview中闪烁), Textbox1.text =Raman(然后名称:Raman 应在 Gridview 中闪烁)
我该怎么做?
需要 VB.Net 代码。请帮忙。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这非常简单。将计时器添加到您的表单中,将其间隔设置为 100 毫秒,并在timer1_Tick 事件中切换文本框外观,如下所示。
您可以应用更具体的设计风格,这将使文本框的文本闪烁。
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.