Try something like this:
Code:
If CurrentDb().TableDefs(strTableName).Name = strTableName Then
' nop - just doing this if to see if Err 3265 occurs
End If
If Err.Number = 0 then
' table exists
ElseIf Err.Number = 3265 Then ' "Item Not Found in the collection"
' table does not exist
Err.Clear
Debug.Print "table does not exist"
Else
' unhandled error
Err.Raise
End If
Randall J Weers
Membership Vice President
Pacific NorthWest Access Developers Group
http://www.pnwadg.org