I've made progress bars in the past and I've sync'd replicas in the past. But something that's always been a problem for me is meshing the two together.
With Access 2007 is it possible to create a progress bar for use during:
I'm unable to find anything already in Access to show what % of completeness exists, or even a way to know what table it is currently checking/working on.
Does a method exist for this or will it involve long hours working on something custom?
With Access 2007 is it possible to create a progress bar for use during:
Code:
Dim db As DAO.Database
On Error GoTo CmdSynchronize_Click_Error
Set db = CurrentDb
db.Synchronize (Replica)
DoEvents
db.Close
MsgBox "Synchronization Complete"
Quit
On Error GoTo 0
Exit Sub
CmdSynchronize_Click_Error:
Call ErrorHandler(Err.Number, Err.Description, "CmdSynchronize_Click")
Exit Sub
I'm unable to find anything already in Access to show what % of completeness exists, or even a way to know what table it is currently checking/working on.
Does a method exist for this or will it involve long hours working on something custom?