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 Form_Activate()
Static sw as Boolean
If Not sw Then
With daoctrl.Recordset
.MoveFirst
Text1.Text = .Fields(0)
End With
End If
End Sub
Private Sub Form_Load()
With daoctrl
.Databasename = "DBPath"
.Recordsource = "rcdSource"
End With
End Sub
Private Sub Form_Load()
With daoctrl
.Databasename = "DBPath"
.Recordsource = "rcdSource"
.Refresh
.Recordset.MoveFirst
Text1.Text = .Recordset.Fields(0)
End With
End Sub