Dim dbs_Current As Database
Dim Table_Exist As TableDef
Set dbs_Current = CurrentDb
With dbs_Current
Set Table_Exist = .CreateTableDef()
For Each Table_Exist In .TableDefs
Debug.Print " " & Table_Exist.Name
If Table_Exist.Name = "HR_LOG1" Then
Me!Text_Box.Visible = True
Me!Text_Box = "Deleted Existing Table..........."
Me.Repaint
.TableDefs.Delete "HR_LOG1"
End If
Next Table_Exist
End With