Hey Jedi, I found a bug
Guess it pays to have some experienced programmers arouned here, eh?
\"Run-time error \'6\': Overflow\"
And guess what? I knew exactly how to make that come up. Let\'s just say, dividing by zero ain\'t exactly a good thing
Ok ok, I\'ll tell you. If you don\'t answer a single question before the time runs out (EDIT: or if you use the \"I quit\" button), your program tried to calculate your percentage (correct_questions/total_questions) and since I haven\'t answered any questions, you get a \"Divide by zero: Overflow.\"
So just throw a handly little statement in there like:
If total_questions = 0 Then
....MsgBox (\"OMFG you\'re such a stupid idiot! You couldn\'t answer a single question!!!\" )
Else
....\'Normal message box here
End If
Or...something along those lines
