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.
DBEngine(0)(0).Execute("UPDATE YourTableNameHere SET YourFieldNameHere = '" & InputBox(...) & "';")
Dim strInput as string
strInput = InputBox(...)
If Len(strInput)>0 Then DBEngine(0)(0).Execute("UPDATE YourTableNameHere SET YourFieldNameHere = '" & strInput(...) & "';")
Function TestTypeThing()
DBEngine(0)(0).Execute ("UPDATE tblUserLogOn SET UserID = '" & InputBox("Enter Your Name") & "' WHERE InsertWhere StatementHere;")
End Function