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 strSQL As String
strSQL = "INSERT INTO Vehicle ( Mileage )
Values(" & Me.YourFormControlWithTheMileage & ")"
CurrentDb.Execute strSQL, dbFailOnError
Dim strSQL As String
strSQL = "UPDATE Vehicle SET Mileage =" & Me.YourFormControlWithTheMileage & _
" WHERE VehicleID = " & Me.YourControlWithVehicleID
CurrentDb.Execute strSQL, dbFailOnError
Dim strSQL As String
strSQL = "UPDATE Vehicle SET Mileage =" & Me.YourFormControlWithTheMileage & _
" WHERE VehicleID = " & Chr(34) & Me.YourControlWithVehicleID & Chr(34)
CurrentDb.Execute strSQL, dbFailOnError