How to format a number 1000 to 1,000 for textbox
to use in a Tostring
in C#
in a label and in a message.show
myString = "Attempt #" + AttemptNumber.ToString( );
AttemptsLbl.Text = AttemptNumber.ToString();
MessageBox.Show(" Match Found for All 3 Digits - it took " + AttemptNumber + " tries!");