I have a sequential file to input the first two lines are this:
Data-types Quiz, 8
1, What data-type would you use for the population of Chicago?, LONG,LONG,lng,1

The first variable is a string for Data-types Quiz

The second variable is a Integer that makes a control array with 8
buttons.

The second line is a string that is shown on a label. I can input the
first line into the program and make the buttons with this code:

Input #intFileNum, strTestName, intNumberOfQuestions

and I make the buttons and show the question in the label with this code:

For intLoadQuestions = 1 To intNumberOfQuestions
Call MakeTheButtons(intLoadQuestions)
For intLoadFields = 1 To 6
Input #intFileNum, g_strQuestionsAndAnswers(intLoadFields, intLoadQuestions)
Next intLoadFields
g_strQuestionsAndAnswers(intLoadFields, intLoadQuestions) = "<Enter you answer>"
Next intLoadQuestions

Close #intFileNum


How do I input the answeres in the text file? I want to put them into
an array and and the three answers into a array and and compare them
to the answere I input into the text box. I can't change the text file.