I got
and
Assume I type 20 in textbox, Then I press the button
What will I get ? 15 or 25
Can you also explain which event occur first(or which doesn't occur)?
Thank you
P.S. although it is 2021, I am still new to vb2010, haha :wave:
Code:
Textbox1_LostFocus
Textbox1.text = "10"
Code:
Button1_Click
Textbox1.text = (CDec(Textbox1.text) + 5).ToString("N2")
What will I get ? 15 or 25
Can you also explain which event occur first(or which doesn't occur)?
Thank you
P.S. although it is 2021, I am still new to vb2010, haha :wave: