Thanks. I have in the past used a color change, but the only way I know to
do this is to modify each form, to keep myself constantly aware, whichever
form I had open, that I was in the test version of the application. This
seemed a bit tedious. I like color change, but was looking for a simpler way
of doing it.
What I've done today is to edit the Application Title that appears
constantly in the Title Bar at the top of the screen, by adding the word
"TEST". This was done via the Office Button, then Access Options, Current
Database. Now there is a constant reminder, easily done, and easily
reversible, but it doesn't really reach out and grab your attention.
O.B.P.
"PieterLinden via AccessMonster.com" wrote:
> oldblindpew wrote:
> >I have a split database, front end application/back end data. To further
> >develop and improve the front-end application, I want to work on copies of
> >both the front-end and the back end, to avoid disturbing the production
> >environment.
> >
> >The development version, being a copy, will look just like the production
> >version. Any tips on how best to make the test version look different, so as
> >to lessen the chances of accidentally making changes to the wrong version?
>
> I would probably do something like changing a background color (something
> that's not ugly, but definitely obvious) or show a label that says it's the
> test copy. Or you could have a message box pop up when the database opens.
> Something as simple as
>
> intReply=MsgBox("You are working on the DEVELOPMENT version of the database.
> If this OK?", vbYesNo)
>
> if intReply = vbNo Then
>
> --
> Message posted via http://www.accessmonster.com
>
>