How do I get to show the value of a variable, like for a score or something? Suppose I have a variable named “score”. How would I show the value of it on the screen?
You should be able to just throw the variable at vbTextOut, instead of a fixed string. If the variable is an integer, use itoa() on it first to convert to a string.