Answer the question
In order to leave comments, you need to log in
How to register the first element of the list in the event procedure?
In the marks table, you must specify the student id, the id of the assessment criterion, and the assessment itself. I wrote the following in the "Save marks" button:
Dim strSQL, gradeSQL As String
strSQL = " Insert Into marks(criteriaid, userid, finalgrade) values ('" & Me.criteria & "', '" & Me.student & "', '" & Me.mark & "');"
CurrentProject.Connection.Execute(strSQL)
MsgBox("Added!").
The problem is that one record will be added to the table, but you need to duplicate the student id and add the rest of the grades.
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question