Sep 26, 2003 #1 drctx IS-IT--Management May 20, 2003 226 US is there a way to get the name of the current database?
Sep 26, 2003 1 #2 VBslammer Programmer Aug 12, 2002 1,367 US I don't know what you're running, this is for Access 2000: Code: Dim strDB As String strDB = CurrentProject.Name 'returns db1.mdb or similar strDB = CurrentDB.Name 'returns full path and filename VBSlammer Unemployed in Houston, Texas Upvote 0 Downvote
I don't know what you're running, this is for Access 2000: Code: Dim strDB As String strDB = CurrentProject.Name 'returns db1.mdb or similar strDB = CurrentDB.Name 'returns full path and filename VBSlammer Unemployed in Houston, Texas
Sep 27, 2003 Thread starter #3 drctx IS-IT--Management May 20, 2003 226 US thanks! exactly what i was looking for. Upvote 0 Downvote