> "onwatch" <onwatch...@mail.com> wrote in message
> news:e0G25.24810$Y4.147972@typhoon2.san.rr.com...
> > To Jake, Dan, Bruce, and Sundial Services
> > Thank you all very much for taking your valuable time to help.
> > Jake: Interesting enough, we do have an autoincrement field in the
> > corrupted
> > table. Nevertheless, its purpose is only to provide a chronological
order
> > of
> > the records that were input...and it's not indexed.
> > Dan, Bruce: I appologize for not having left the following part out ..
> > The main screen of our app assigns the session.onstartup to a method
which
> > sets the session.netfiledir to the windows temp directory (gettemppath).
> NO. All stations have to run with NetFileDir pointing to the same physical
> location. All sessions must have their PrivateDir pointing to a different
> physical location. E.G.
> Session1.NetFileDir := '\\ServerName\AppDataDir\NetDir';
> GetTempPath (n, tmpPath);
> Session1.PrivateDir := tmpPath + 'Session1';
> Session2.NetFileDir := '\\ServerName\AppDataDir\NetDir';
> Session2.PrivateDir := tmpPath + 'Session2';