Public Function StartDatabase(strFilename As String)
Dim strCurDir As String
If Len(Nz(Dir(strFilename))) = 0 Then
MsgBox "Database not found.", vbExclamation, "Oops!"
Else
Shell "msaccess.exe """ & strFilename & """", vbMaximizedFocus
End If
End Function