I have some databases that are Access files. These files are getting full and I am trying to create a program to remove some of the files not needed. The Problem that I have is the code, which I will post below, only deletes one table and not the others in the code. Am I missing something?

VB Code:
  1. Dim xCon As New OleDb.OleDbConnection
  2.         Dim xCom As New OleDb.OleDbCommand
  3.         Dim xAdap As New OleDb.OleDbDataAdapter(xCom)
  4.         Dim xComBuild As New OleDb.OleDbCommandBuilder(xAdap)
  5.         Dim ConnnectionString As String = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Program Files\Store2Office\Emp.mdb;Mode=ReadWrite;Persist Security Info=False"
  6.  
  7.  
  8.         Dim emp As String = "Emp.mdb"
  9.         Dim hqomfox As String = "hqomfox.mdb"
  10.         Dim s2o As String = "s2o.mdb"
  11.         Dim product As String = "product.mdb"
  12.         Dim s2ohourly As String = "s2ohourly.mdb"
  13.         Dim inventory As String = "inventory.mdb"
  14.         Dim composer As String = "composer.mdb"
  15.         Dim e2 As String = "e2.mdb"
  16.  
  17.         'EMP.MDB and tables
  18.  
  19.         xCom.CommandText = "Delete * from charges where s_date<#" & TextBox1.Text & "#"
  20.         xCom.ExecuteNonQuery()
  21.         xCom.CommandText = "Delete * from clockchanges where indate<#" & TextBox1.Text & "#"
  22.         xCom.ExecuteNonQuery()
  23.         xCom.CommandText = "Delete * from clockdata where indate<#" & TextBox1.Text & "#"
  24.         xCom.ExecuteNonQuery()
  25.         xCom.CommandText = "Delete * from mhj_schedule where s_date<#" & TextBox1.Text & "#"
  26.         xCom.ExecuteNonQuery()
  27.         xCom.CommandText = "Delete * from schedule where indate<#" & TextBox1.Text & "#"
  28.         xCom.ExecuteNonQuery()
  29.         xCom.Connection = xCon
  30.         xCon.ConnectionString = ConnnectionString
  31.  
  32.         If xCon.State = ConnectionState.Closed Then
  33.             xCon.Open()
  34.         End If
  35.         xCom.ExecuteNonQuery()
  36.         xCon.Close()