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.
* Creating Source data
Create Cursor curSource (cData C(10) default Sys(2015))
Append Blank
Append Blank
Delete
Append Blank
* Creating an empty Destination
Create Cursor curDest (cData C(10) default Sys(2015))
Select curDest && should be selected anyway, just to make sure and clear it's the destination
Set Deleted On
Append From Dbf("curSource")
Set Deleted Off
Append From Dbf("curSource")
Browse