synchronizing folders

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is it possible to be able to synchronize a folder on a local machine with a
folder on a server the same way you can in Windows
I want to do it with a command button

oldjay
 
Not sure what you want to do, but this is code from VBA help.

Private Sub app_WorkbookSync(ByVal Wb As Workbook, _
ByVal SyncEventType As Office.MsoSyncEventType)

If SyncEventType = msoSyncEventDownloadFailed Or _
SyncEventType = msoSyncEventUploadFailed Then

MsgBox "Workbook synchronization failed. " & _
"Please contact your administrator " & vbCrLf & _
"or try again later."

End If

End Sub
 
Not sure what you want to do, but this is code from VBA help.

Private Sub app_WorkbookSync(ByVal Wb As Workbook, _
ByVal SyncEventType As Office.MsoSyncEventType)

If SyncEventType = msoSyncEventDownloadFailed Or _
SyncEventType = msoSyncEventUploadFailed Then

MsgBox "Workbook synchronization failed. " & _
"Please contact your administrator " & vbCrLf & _
"or try again later."

End If

End Sub






- Show quoted text -

it's not working buddy
 
Thanks I will try it

JLGWhiz said:
Not sure what you want to do, but this is code from VBA help.

Private Sub app_WorkbookSync(ByVal Wb As Workbook, _
ByVal SyncEventType As Office.MsoSyncEventType)

If SyncEventType = msoSyncEventDownloadFailed Or _
SyncEventType = msoSyncEventUploadFailed Then

MsgBox "Workbook synchronization failed. " & _
"Please contact your administrator " & vbCrLf & _
"or try again later."

End If

End Sub
 
Back
Top