of course, it helps when i remember the code:
Option Compare Database
Option Explicit
'//////////////////////////////////////////////////////////////////////////////////////
Sub subBackupDB()
' Declare win32 file system:
Dim fs
Set fs = CreateObject("Scripting.FileSystemObject"
' Assign backup folder:
Dim i As Integer
Dim bolFind As Boolean
Do Until bolFind = True
If Left(Right(CurrentDb.Name, i), 1) = "\" Then bolFind = True
i = i + 1
Loop
Dim strFile As String
strFile = Right(CurrentDb.Name, i - 2)
Dim strDest As String
strDest = "C:\Documents and Settings\n0111546\DBBackup\"
Dim strInto As String
strInto = strDest & "(Backup " & Format(Date, "mm-dd-yyyy"

& "

" & strFile
' If the filename is unique in the destination folder:
If fs.FileExists(strInto) = False Then
' Move the file:
fs.CopyFile CurrentDb.Name, strInto
End If
End Sub
'//////////////////////////////////////////////////////////////////////////////////////