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 rs = New ADODB.Recordset
With rs
.Fields.Append "Name", adVarChar, 120
.Fields.Append "Address", adVarChar, 120
....
End With
With rs
.AddNew
.Fields(0).value = <Name>
.Fields(1).value = <Address>
...
.Update
End with