Pesky bugs

posted Sep 17, 2010, 1:56 PM by Ezra Kenigsberg
Turned up the sneakiest bug today!  Synchronizer fails if Access's working directory driveletter differs from Data Loader's driveletter.

I'm going to finish a bit of query-generating code before making the next minor-release (v2.2).

In the meantime--if you've been having problems with Synchronizer giving a bunch of "File Not Found" errors, drop me a line.  OR, if you're a DIY type, open Synchronizer, open the Visual Basic Editor, and make the two changes described below: 

1) In the "basSync_Encrypt" module, find
            ChDir IIf(Right(strPath, 1) = "\", Left(strPath, Len(strPath) - 1), strPath) & "\bin"
        and put this line immediately above it:
            ChDrive Left(strPath, 2)

2) In the "basSync_SyncData" module, find
            ChDir stgs.Path & "\bin"
        and put this line immediately above it:
            ChDrive Left(stgs.Path, 2)

Thanks to Linda Titus for her bug-squashing help!
Comments