Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Set rsInfo = CurrentDb.OpenRecordset("tblInfo")
rsInfo.Edit
rsInfo!CertNumber = rsInfo!CertNumber + 1
rsInfo.Update
Me.CertNo = rsInfo!CertNumber
rsInfo.Close
strStudentNo = "S" & Format( _
DMax("Mid(StudentNo,2,4)", "tblStudents", "Right(StudentNo,4)=" _
& Year(Date)) + 1, "0000") & Year(Date)