Coolprogram
Programmer
Well i need to append data from cursor 1 to cursor 2 . As i make a system for a storage accounting system , we will use bar codes and barcode scanner
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.
APPEND FROM DBF("afas")
Select bar_kodas, pavadinimas, vieta_sandelyje, kiekis, kaina From afas Into Cursor rasti
if empty(thisform.curScan)
thisform.curScan = sys(2015)
endif
curScan = thisform.curScan
create cursor (curScan) (barcode1 c(20), etc..)
curScan = thisform.curScan
if not empty(curScan)
use in sele(curScan)
endif
becareful when using cursor and your not running private data sessions.