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 lRst_ReptMast = New ADODB.Recordset
lRst_ReptMast.ActiveConnection = CurrentProject.Connection
lRst_ReptMast.Open "tblReportMaster", , adOpenDynamic, adLockPessimistic, adCmdTable
Dim RecLen As Long
Dim Idx As Integer
lRst_ReptMast.MoveFirst
RecLen = 0
For Idx = 0 To lRst_ReptMast.Fields.Count - 1
If (lRst_ReptMast.Fields(Idx).Type <> adLongVarWChar) Then
RecLen = RecLen + lRst_ReptMast.Fields(Idx).DefinedSize
End If
Next Idx