I would tweek chrisjk's method just a bit and put the following in my file
Code:
whats the capital of the UK London;Dublin;Bristol;Bath;1
Where the 1 indicates the correct answer.
If you have VB6 you can use the Split function to break up the line above at the semi-colons. (If you don't have VB 6 you'd haver to split it up yourself). The last entry in the resulting array would then contain 1 and you could use that as the index into the array to display the answer. If that's confusing let me know if you have VB6 or not and I'll do the code for you.