T
tclarke
Using access 2003, I have a form which displays Student Data, for a
single student, from StudentTbl and Exam Data, for the same student,
from ExamTbl.
Student Data is displayed in Single Form view and Exam Data is
displayed as a sub form in Continuous Forms view.
Is it possible to create a bound text box, (txtL1Pass), in the Student
Data section of the form, which will display either PASS or FAIL
depending on whether the Pass check boxes on the Exam sub form
(Continuous Forms) are true or false for modules 1, 2 and 3.
Something like this:
If Forms!ExamsSubForm!chkbxMod1Pass=True AND
Forms!ExamsSubForm!chkbxMod2Pass=True AND
Forms!ExamsSubForm!chkbxMod3Pass=True
Then
Me.txtL1Pass="PASS"
Else
Me.txtL1Pass="FAIL"
End If
Also, if it's possible, where would the event procedure be placed?
single student, from StudentTbl and Exam Data, for the same student,
from ExamTbl.
Student Data is displayed in Single Form view and Exam Data is
displayed as a sub form in Continuous Forms view.
Is it possible to create a bound text box, (txtL1Pass), in the Student
Data section of the form, which will display either PASS or FAIL
depending on whether the Pass check boxes on the Exam sub form
(Continuous Forms) are true or false for modules 1, 2 and 3.
Something like this:
If Forms!ExamsSubForm!chkbxMod1Pass=True AND
Forms!ExamsSubForm!chkbxMod2Pass=True AND
Forms!ExamsSubForm!chkbxMod3Pass=True
Then
Me.txtL1Pass="PASS"
Else
Me.txtL1Pass="FAIL"
End If
Also, if it's possible, where would the event procedure be placed?