I have a back-end (BE) and a front-end(FE). The BE is replicated.
Replicated BE and FE are in a laptop. Master BE is on a server.
How can I sync my replicated BE with my Master BE from my FE?
Thanks.
Got it.
> Got it.
For the benefit of others, can you explain what you learned? It's a
frequent question, which I've most recently answered on
UtterAccess.com, but I'd be interested to see what answer you found.
--
David W. Fenton http://www.dfenton.com/
usenet at dfenton dot com http://www.dfenton.com/DFA/
David - I found a post from you somewhere, prob the one u mentioned.
I did what you posted...put the following code in my FE:
Dim db As DAO.Database
Set db = DBEngine.OpenDatabase("replica_BE")
db.Synchronize "master_BE"
db.Close
Set db = Nothing
Thanks :)