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 Explicit
Private WithEvents rsADO As ADODB.Recordset
Private Sub rsADO_WillMove(ByVal adReason As ADODB.EventReasonEnum, adStatus As ADODB.EventStatusEnum, ByVal pRecordset As ADODB.Recordset)
With pRecordset
If Not (pRecordset.BOF Or pRecordset.EOF) Then
Select Case .Status
Case adRecModified
.UpdateBatch adAffectCurrent
Case adRecNew
.UpdateBatch adAffectCurrent
Case adRecDeleted
.UpdateBatch adAffectCurrent
End Select
End If
End With
End Sub