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.
USE myTable1.dbf shared again in 0 && The one you want to update
SELECT myTable1
SET ORDER TO 1 && Key field
USE myTable2.dbf shared again in 0 && The one that contains the updates.
SELECT myTable2
SCAN
SCATTER MEMVAR MEMO
lcKey = myTable2.keyfield
SELECT myTable1
IF SEEK(lcKey)
GATHER MEMVAR MEMO
ENDIF
ENDSCAN
USE SourceTable IN 0
USE TargetTable IN 0 INDEX fullname
SELECT SourceTable
SCAN
SELECT TargetTable
SEEK SourceTable.lname + SourceTable.fname
REPLACE FirstName WITH SourceTable.fname
REPLACE LastName WITH SourceTable.lname
.
.
.
ENDSCAN