I assume you are using
VB and Access.
This code will do internet synchronization:
Code:
Dim dbsTemp As DAO.Database
Set dbsTemp = DBEngine.OpenDatabase(SourceFile)
' Synchronize the local database with the replica on
' the Internet server.
dbsTemp.Synchronize InternetServer, dbRepImpExpChanges + dbRepSyncInternet
InternetSync = True
dbsTemp.Close
If you want more code examples just search google for dbs.synchronize or dbrepimpexpchanges. Both will give you some good links.