
(1)======================================================

Anyone, who knows, answer please.
Whether Correctly the statement: as the property Database at object Cursor
in DataEnvironment in run-time is accessible on "read only", there is not
enough  opportunity dynamically (from a code of the application) to change
the location of a database in the applications on Vfp 6.0
Thanks Michael.

(2)======================================================

THis is exactly where we dynamically set the location of tables at runtime.  Our app uses an INI file with the path to the .DBC, which is read at program startup and stored in a public variable PUBDATAPATH (i.e. "F:\data\mydata.dbc").  In each form's Dataenvironment, in the BeforeOpenTables event, we specify the location of the database fr each cursor in the dataenvironment:
    
    WITH THIS
        .Cursor1.database = PUBDATAPATH
        .Cursor2.database = PUBDATAPATH
    ENDWITH
    
-- 
--------------------------------
Clayton Ainsworth
Homecare Software Systems, Inc.
clayton@hcsw.com
--------------------------------
[ http://www.hcsw.com ]

(3)======================================================

Thank, I have understood, that was mistaken when has seen, that actually in MSDN is written for Database: "Read-only at design time; read-write at run time."