How do I tell what filename I'm working on?

Mist

Registered User.
Local time
Today, 16:30
Joined
Mar 5, 2012
Messages
66
Hopefully a simple question. When I work on a database I copy it and change the name (sort-of backup copy) Sometimes I forget which one is loaded. How do I confirm without closing the app?

Thanx for any reply. :(
 
in the immediate window

?currentproject.name

?currentproject.path
 
Before Access 2010 it was currentDb.Name (still works in 2010).

Ctrl + G to get to the immediate (Debug) screen.

In the bottom half of the window type ...

Code:
Print currentProject.name
or
Print currentDb.name
 

Users who are viewing this thread

Back
Top Bottom