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.
Private Sub NdxUsers()
Dim strIndexSQL As String
Dim cmd As New ADODB.Command
strIndexSQL = "create unique index <indexObjectName> on LinkedTblName(UniqueColumnName)"
With cmd
.ActiveConnection = [Your Connection Info Here]
.CommandText = strIndexSQL
.Execute
End With
Set cmd = Nothing
End Sub