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.
txtSearch.Text = "N"
rs1.Filter = " [Name] like '" & txtSearch.Text & "%'"
With MSFlexGrid2
.Clear
.FormatString = "ID|Name |Address1 ..."
rs1.MoveLast
.Rows = rs1.RecordCount
rs1.MoveFirst
For i = 1 To .Rows - 1
.TextMatrix(i ,0) = rst1!ID
.TextMatrix(i ,1) = rst1!Name
.TextMatrix(i ,2) = rst1!Address1
.TextMatrix(i ,3) = rst1!Address2
....
rs1.MoveNext
Next i
.CellAlignment = Left
End With
rs1.Filter = ""