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.
* open a database
OPEN DATABASE (GetFile("dbc"))
* specify destination directory
Cd (GetDir("","Where do you want the SDF files?","Specify Destination Directory",0,.F.))
* Get tables names into an array
lnCount = ADBOBJECTS(laTables, "TABLE")
* Loop through the array
FOR lnI = 1 TO lnCount
USE (laTables(lnI))
* Make the output filename the same as the table's,
* but with TXT instead of DBF
lcFile = FORCEEXT(laTables(lnI),"txt")
* Copy the table to SDF
COPY TO (lcFile) SDF
ENDF
what will i put at "Where do you want the SDF files?"? D:\abc something like that? and how about the "Specify Destination Directory"?