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.
var
strColor String
qryCars Query
tvAnswer TableView
endVar
if fldColor.isBlank() then
msgStop( "Can't Show Cars",
"You need to enter a color." )
else
strColor = fldColor.value
qryCars = query
cars.db | color |
check | ~strColor |
endQuery
if qryCars.executeQBE() then
tv.open( ":priv:answer" )
endIf
endIf