简体   繁体   中英

textchanged event of textbox in vb.net

I want to fire the textchanged event of textbox after the user enters text/data in the textbox in vb.net. But the event is getting fired as soon as the user enters the first word in the textbox.

is there any way I can solve this problem? I tried googling but didnt get satisfactory solution..

TextChanged Event is triggered when there is any change in the TextBox. If you want to invoke something after user finishes up then try using LostFocus Event of the TextBox which will be triggered as user leaves the focus from textbox.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM