> I hope someone can help. I have built a project with a database(data1.dbc). I am trying to move the database to a central server so that multiple instances of the program can access the data. I have tried to change my project many ways(such as modifying the before opentables on the dataenvironment) and the only thing that gets updated is the origional database. I am at a loss.
>
> Thank You,
One option is to use an excluded config.fpw file containing a line
Path = \\theServer\sharedFolder
Another is to "Set Path To something" early in your "main.prg", where "something" can be a variable or object.method() or function returning the server path being read from something like a DBF, XML or INI file, or Windows Registry etc.
Right after that line, you can "Open yourDatabase.DBC Shared" additionally.
hth
-Stefan