View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
Oldjay Oldjay is offline
external usenet poster
 
Posts: 337
Default synchronizing folders

Thanks I will try it

"JLGWhiz" wrote:

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


"Oldjay" wrote:

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