Delete indexes using DAO in VBA
Option Compare Database
Option Explicit
'Constants for examining how a field is indexed.
Private Const intcIndexNone As Integer = 0
Private Const intcIndexGeneral As Integer = 1
Private Const intcIndexUnique As Integer = 3
Private Const intcIndexPrimary As Integer = 7
Function DeleteIndexDAO() DBEngine(0)(0).TableDefs("tblDaoContractor").Indexes.Delete "Inactive" End Function
No comments:
Post a Comment