AndrewMozley
Programmer
I have an application in which there are several forms, each of which uses its data environment to specify the tables which should be opened for that form.
The properties of each table (Mytable1) include a ‘Database’ property. This is taken from the database from which I selected the table at the time the form was designed. So this might be “Myfolder\Mydatabase.dbc”
When the application runs, the table which needs to be opened is a table (MyTable1), but within a database specific to the client; this database will already be open; it might be users\GeneralCo\Data\ClientData.dbc.
In general this works fine; but if, on the client’s machine, there is a database Myfolder\Mydatabase.dbc, it is from that database that the table will be opened; I do not want that.
My understanding is that the database property is read only. I saw some discussion (back in 2005) about how the database property could be altered, but was unable to work through it.
If anyone can provide simple guidance on this matter I would be grateful.
Andrew