Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
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