D
Dave Stevenson
Thanks for the replies,
I should have trawled through some of the previous posts
in this newsgroup as exactly the same question was asked a
few days ago !
What I evetually did was :-
On Error Resume Next
Exists = IsObject(CurrentDb.TableDefs(tablename))
If Exists Then
DoCmd.DeleteObject acTable, tablename
End If
On Error GoTo Load_Err '(Usual error handler)
Dave
I should have trawled through some of the previous posts
in this newsgroup as exactly the same question was asked a
few days ago !
What I evetually did was :-
On Error Resume Next
Exists = IsObject(CurrentDb.TableDefs(tablename))
If Exists Then
DoCmd.DeleteObject acTable, tablename
End If
On Error GoTo Load_Err '(Usual error handler)
Dave