LittleSmudge
Programmer
I have a series of MSAccess Front End applications that are distributed across 6 sites over a WAN ( VPN ) ( Front up for a MySQL dataengine )
To speed up logging on to the MSAccess databases I have distributed the .MDW file to each of the local servers and the users then open their Access front end dbs using their local .MDW
The central master .MDW file is updated with new users and old ones removed at the corporate headquarters and then distributed to all sites along with new FE design changes overnight on a scheduled copy process.
I now want each user to be able to change their own password when they want to.
I can easily change the password held in the local copy of the .MDW because that is just a
HOWEVER, how can I write the change to the central .MDW so that the local changes do not get overwritten during the next nightly copy process ?
G LS
spsinkNOJUNK@yahoo.co.uk
Remove the NOJUNK to use.
To speed up logging on to the MSAccess databases I have distributed the .MDW file to each of the local servers and the users then open their Access front end dbs using their local .MDW
The central master .MDW file is updated with new users and old ones removed at the corporate headquarters and then distributed to all sites along with new FE design changes overnight on a scheduled copy process.
I now want each user to be able to change their own password when they want to.
I can easily change the password held in the local copy of the .MDW because that is just a
Code:
DBEngine(0).Users(txtCurrentUser).NewPassword Nz(txtOldPass, ""), txtNewPass
HOWEVER, how can I write the change to the central .MDW so that the local changes do not get overwritten during the next nightly copy process ?
G LS
spsinkNOJUNK@yahoo.co.uk
Remove the NOJUNK to use.