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.
Dim rsEntries As ADODB.Recordset
Dim rsDrawing As ADODB.Recordset
Dim i As Integer
Set rsEntries = New ADODB.Recordset
Set rsDrawing = New ADODB.Recordset
rsEntries.Open "tablename", CurrentProject.Connection, adOpenKeyset, adLockOptimistic, adCmdTable
rsDrawing.Open "tablename", CurrentProject.Connection, adOpenKeyset, adLockOptimistic, adCmdTable
With rsEntries
.MoveFirst
Do Until .EOF
For i = 1 To .Fields("fieldwithnumberoftimes")
rsDrawing.AddNew
rsDrawing.Fields("fieldname") = .Fields(fFieldname")
'... (as many fields as needed)
rsDrawing.Update
Next i
.MoveNext
Loop
End With
rsDrawing.Close
rsEntries.Close