Access VisualBasic Script

Sub DeleteIndex() 
    Dim conn As ADODB.Connection 
    Dim strTable As String 
    On Error GoTo ErrorHandler 
    Set conn = CurrentProject.Connection 
    strTable = "myTable" 
    conn.Execute "DROP INDEX idxSupplierName ON " & strTable & ";" 
ExitHere: 
    conn.Close 
    Set conn = Nothing 
    Exit Sub 
ErrorHandler: 
    Debug.Print Err.Number & ":" & Err.Description 
    Resume ExitHere 
End Sub