Hey guy,I would like to do a number jumping just like the picture.In the textbox,it will show number "3".When the button is click,the textbox number "3" will change to "2" then click again it will change to "1".How to do it?! I had try this code but useless(i know that code is error)
for (int i = 2; i >= 3; i--)
{
if (i == 0)
{
MessageBox.Show("Please try again", "Error");
}
}