Praedico
New Member
- Joined
- Jul 17, 2008
- Messages
- 43
Working with Windows 7 and Office 2010
I've created a Excel workbook with VBA code to synchronize an Access database between a laptop and a server. One of the fields in the database is a shortcut to a jpg for each record. (The Access stuff is not too important here)
Now I'd like to add the ability synchronize the photos between the laptop and the server; so people who use the server can view the photos added by the laptop and vice versa.
Something like:
Of course that code wouldn't work (that's why I'm here) it just gives you an idea of what I'm trying to accomplish.
Any nudge in the right direction would be much appreciated,
Thank you
I've created a Excel workbook with VBA code to synchronize an Access database between a laptop and a server. One of the fields in the database is a shortcut to a jpg for each record. (The Access stuff is not too important here)
Now I'd like to add the ability synchronize the photos between the laptop and the server; so people who use the server can view the photos added by the laptop and vice versa.
Something like:
Code:
For each [JPG] in [LaptopFolder]
If not [JPG] exists in [ServerFolder] then
filecopy [LaptopFolder]\[JPG], [ServerFolder]\[JPG]
end if
next [JPG]
Of course that code wouldn't work (that's why I'm here) it just gives you an idea of what I'm trying to accomplish.
Any nudge in the right direction would be much appreciated,
Thank you