I am trying to create something simular to that of the CCNA or MCSE Test system, whereby there are uses, who take training courses and then multiple choice exams, which is of course recorded in a database, (however, this will not be online but with the forms you can create in MS Access 2002).
There are six courses, which consist of 50 questions each. Every test will generate 10 random questions from the 50 questions from each course.
Would anyone know:
1)How to create/code a single form so that it displays a different question when 'next cmd button' is clicked.
2)To be able to generate random questions from 50 - do I query it?
My tables are: (capitals represent primary anf foreign keys)
USER (USER_ID, Lastname, Firstname, Dept)
SECURITY (USER_ID, PASSWORD)
QUESTION (ANSWER_ID, Question_Text, Answer_Text, Weighting)
RESULT (TEST_ID, USER_ID, ANSWER_ID, Date, Time, Result, 010101, 010102.........065004)
the 010101 etc means 01 = Course 1, 01 = Ques 1, 01 = Answer 1, therefore 010101.
Any help is greatly appreciated!
There are six courses, which consist of 50 questions each. Every test will generate 10 random questions from the 50 questions from each course.
Would anyone know:
1)How to create/code a single form so that it displays a different question when 'next cmd button' is clicked.
2)To be able to generate random questions from 50 - do I query it?
My tables are: (capitals represent primary anf foreign keys)
USER (USER_ID, Lastname, Firstname, Dept)
SECURITY (USER_ID, PASSWORD)
QUESTION (ANSWER_ID, Question_Text, Answer_Text, Weighting)
RESULT (TEST_ID, USER_ID, ANSWER_ID, Date, Time, Result, 010101, 010102.........065004)
the 010101 etc means 01 = Course 1, 01 = Ques 1, 01 = Answer 1, therefore 010101.
Any help is greatly appreciated!