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.
SELECT Client
SET ORDER TO CustNo
SELECT RemTran
SET RELATION TO CustNo INTO Client
DELETE FOR EMPTY(Client.CustNo)
select 0
use Client exclusive
index on custno tag client
select 0
use remtran exclusive
go top
do while .not. eof()
select client
set order to custno
seek(remtran.custno)
if !found()
select remtran
delete
endif
select remtran
skip
enddo
select remtran
pack
messagebox("Done")