It seems I've forgoten more about basic than I ever remembered
Since I never kept any of my QBasic source I'm now struggling.
I'm pretty sure I had an array in one of my past programs that was used for storing a database of questions and answers for a quiz.
It was something like this:-
question$(1)=Question$,Answer1$,Answer2$,Answer3$,Answer4$,RightAnswer$,Value
question$(2)=Question$,Answer1$,Answer2$,Answer3$,Answer4$,RightAnswer$,Value
question$(3)=Question$,Answer1$,Answer2$,Answer3$,Answer4$,RightAnswer$,Value
question$(4)=Question$,Answer1$,Answer2$,Answer3$,Answer4$,RightAnswer$,Value
The questions and answers were stored in a file and read to the array at the start of the quiz.
It was just a matter of picking a random question to ask from the array.
So, my question:
What is the correct syntax for declaring/dimensioning this array and will load/save array work with this type of array?
Thanks in advance,
Eckie.