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.
Option Compare Database
Dim intCount
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
If Me.CurrentRecord = intCount Then
Me.lnLine.BorderWidth = 2
End If
End Sub
Private Sub Report_Open(Cancel As Integer)
Dim rs As DAO.Recordset
Set rs = CurrentDb.OpenRecordset(Me.RecordSource)
rs.MoveLast
intCount = rs.RecordCount
rs.Close
End Sub