Hi there,
I'm trying to create a math quiz that reads a series of questions from a sequential access flat file. The file should contain a series of numbers, separated by commas. The first field(value) should be the first number for the problem, the second should be the second number for the problem, and the third number should identify the problem type like the following:
1,2,0
2,3,1
4,5,2...
I'm modifiying a previous version that randomly generates 10 questions, stores the answer in an arry and checks the array to see if the question has been already asked.
I need to load the questions from the file into array structures when loading the form. The application should then read the data from the arrays as a user progresses through the quiz.
Any suggestions on how to get this started?
Thanks.