Link to home
Start Free TrialLog in
Avatar of YZlat
YZlatFlag for United States of America

asked on

TextBox lost focus event

I am running windows form application and trying to capture an event when the text in a textbox was changed. I tried using TextChanged event but it gets activated with every letter typed while i need to grab the text when user is done typing and the cursor is leaving textbox. Which event do I use? How can I accomplish the desired result?
Avatar of p_davis
p_davis

how about the leave event?
ASKER CERTIFIED SOLUTION
Avatar of p_davis
p_davis

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of YZlat

ASKER

Thanks! Totally forgot about this one. it's been a while