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.
So did that solve it for you?
USE MyData IN 0 EXCLUSIVE
SELECT MyData
INDEX ON code + name TAG Indx
USE
cCode = ThisForm.txtCode.text
cName = ThisForm.txtName.text
SELECT MyData
SET ORDER TO Indx
IF SEEK(cCode + cName)
* --- Duplicate Found ---
< Display message to user somehow >
ELSE
APPEND BLANK
REPLACE Code WITH cCode,;
Name WITH cName
ENDIF