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.
I would like to run a .PRG or just execute some code via the console which will append a DISTINCT Alpha numeric number in the ALPHANUM field.
lcAlphaNum=SYS(2015) && Get a unique id
APPEND BLANK && Add a new record
REPLACE alphanum WITH lcAlphaNum IN MyTable
lcAlphaNum=SYS(2015) && Get a unique id
INSERT INTO MyTable (alphanum) VALUES (lcAlphaNum)
i didnt know i had to fully explain since we are in a general foxpro coding forum.