Any More Ideas? and I have to figure out boolean - Need more help
Anyone else have an approach to this? I bound the labels to the datafields and was going to try to individually change each question's multiple choice options by using select case.
Excerpt:
Select Case data1.recordset 'I am trying to use the access
'database ID number as a value
'but don't know how to do it
'is this possible?
case = 1
lblAnswerA.DataField = "multi-1"
lblAnswerB.DataField = "multi-3"
lblAnswerC.DataField = "multi-2"
lblAnswerD.DataField = "CorrectAnswer"
case = 2
lblAnswerA.DataField = "multi-1"
lblAnswerB.DataField = "multi-3"
lblAnswerC.DataField = "multi-2"
lblAnswerD.DataField = "CorrectAnswer"
More: The database has one question and four multiple choice options stored . I named them mult-1, multi-2, multi-3, and answer(answer is the correct choice). It seems to me that I ought to be able to arrange these in different places as the user selects the next question the multiple choice answers are in a different place. Again, so that answer b for example is not always the correct answer. I felt like if I used selectcase where as the case is the database ID number, then I could change the datafield property of the label which contains the choices.
John gave one approach, but before the newbie here tries it,(which I'm not sure I can figure out how to implement), I would like to know if my approach is possible.
Thanks,
Sal