Alguien sabe como crearlo usando ADO Sub ADOCreateAutoIncrColumn() Dim cat As New ADOX.Catalog Dim col As New ADOX.Column ' Open the catalog cat.ActiveConnection = "Provider=Microsoft.Jet.OLEDB.4.0;" & _ "Data Source=.\NorthWind.mdb;" ' Create the new auto increment column With col .Name = "ContactId" .Type = adInteger Set .ParentCatalog = cat .Properties("AutoIncrement") = True End With ' Append the column to the table cat.Tables("Contacts").Columns.Append col Set cat = Nothing End Sub