Hi,
I'm almost done with my coding and I'm trying to implement blocking the user from putting anything but numbers into one textbox and then autocaps'n everything put into another. I've been looking through the web and can't find anything to point me in the right direction.
Also, I can't figure out how to add an int to a string in a messagebox. my code that I have is:
Convert.ToString(totalScore);
finalMessage = ("");
//Displays the users final score along with a finished message.
MessageBox.Show(finalMessage.ToString(), "Question 10/10", MessageBoxButtons.OK, MessageBoxIcon.Information);
or at least thats what im trying now, originally it was all in the message box but I need it to display the message then the totalScore int.
Any help would be great!