06-08-2024, 08:12 PM
Awesome! Your code ran just fine on my system. I only noticed one quirk while playing. During one of the wheel spins a symbol did not appear in the center window.
No comes the fun part - debugging! Yeah
Your solution is very different from mine but it's supposed to be.
One suggestion that may help. You had to track down a misspelled variable. If you make the very first line of your code:
OPTION _EXPLICIT
that won't happen any longer. Any time you misspell a variable the IDE will warn you. In lesson 2 OPTION _EXPLICIT was explained and how it can be very beneficial to use it.
No comes the fun part - debugging! Yeah
Your solution is very different from mine but it's supposed to be.
One suggestion that may help. You had to track down a misspelled variable. If you make the very first line of your code:
OPTION _EXPLICIT
that won't happen any longer. Any time you misspell a variable the IDE will warn you. In lesson 2 OPTION _EXPLICIT was explained and how it can be very beneficial to use it.