"Cam" <(E-Mail Removed)> wrote in message
news:12265F1C-09DB-460A-B08B-(E-Mail Removed)...
> Hello,
>
> I am having a hard time telling the users to use a latest Front End
> database
> version I that created. The BE database resides in a network server.
> Whenever
> I created a new version of the FE, I asked user to delete the older
> version
> and copy the newer version to their desktop, but lots of users are not
> using
> the newer version.
> What can I do to enforce the users to use the newest version and make the
> older version to not work on their desktop? Even thought, technically the
> older version will work also since the data is linked to the same BE.
> Thanks
I use a batch file to copy the FE from a read-only location on the server to
the user's profile on the local disc. It also copies a shortcut to their
desktop. The copied files are over-written every time the batch file is
run. I've attached an example for an app called "DSE".
Keith.
www.keithwilby.com
ECHO OFF
DEL "%temp%\DSE\*.*" /Q
RD "%temp%\DSE"
MKDIR "%temp%\DSE"
DEL "%userprofile%\desktop\DSE.lnk"
XCOPY "\\MyServer\MyPath\Download\DSE.lnk" "%userprofile%\desktop"
XCOPY "\\MyServer\MyPath\Download\DSEGUI.mde" "%temp%\DSE" /I
START "DSE" /MAX "C:\Program Files\Microsoft Office\Office11\MSACCESS.EXE"
"%temp%\DSE\DSEGUI.mde" /wrkgrp "\\MyServer\MyPath\\DSE.mdw"