Re: Input sequential file
for intLoadQuestions = 1 to intNumberOfQuestions
dim strQnA as string
dim arrQnA
Call MakeTheButtons(intLoadQuestions)
' for intLoadFields = 1 to 6
' input #intFileNum, g_strQuestionsAndAnswers(intLoadFields, intLoadQuestions)
' next intLoadFields
' g_strQuestionsAndAnswers(intLoadFields, intLoadQuestions) = "<Enter you answer>"
'
Line input #intFileNum, strQnA
arrQnA=Split(strQnA,",")
'
'Now arrQnA(0) contains 1,
' arrQnA(1) contains your question
' and arrQnA(2) onwards hold the answers.
'You can do whatever you like with these. Display them and compare them using the regular methods.
next intLoadQuestions