B
Bill Sturdevant
I am linking from a front-end to a back-end replica quite
successfully. However, there is one table that conflicts
occur in and I don't want to be bothered by those. The
replication FAQ says to delete that file before I try to
resolve conflicts.
I have been unable to do that programmatically. The table
is created automatically by Access and is hidden.
The following code does not delete it. It fails without
an error message.
Dim db As Database
Set db = CurrentDb()
db.TableDefs.Delete "Tbl_XXXXXXXXXX_Conflict"
db.Close
What am I missing?
successfully. However, there is one table that conflicts
occur in and I don't want to be bothered by those. The
replication FAQ says to delete that file before I try to
resolve conflicts.
I have been unable to do that programmatically. The table
is created automatically by Access and is hidden.
The following code does not delete it. It fails without
an error message.
Dim db As Database
Set db = CurrentDb()
db.TableDefs.Delete "Tbl_XXXXXXXXXX_Conflict"
db.Close
What am I missing?