XBase.CreateFile
Syntax:
Parameters:
<PathToTheDatabase> (required)
Full name of the database table file being created in DBF format.
<PathToIndex> (optional)
Complete name of the index file being created. If parameter is not indicated, the index file will be not created.
Default value: Empty string.
Description:
Availability:
Example:
BaseFileName = "C:\test.dbf"; IndexFileName = "C:\test.cdx"; xB.CreateFile(BaseFileName, IndexFileName); |