I have the following procedure in Form_Load:
Dim accObject As Access.AccessObject
For Each accObject In CurrentData.AllTables
Me.cboSelectTable.AddItem accObject.Name
Next
This populates the combo box with ALL the tables including system tables and those linked to SQL Server. The problem is, I am only hoping to get back tables which can be edited. How can this be determined using VBA?