The project that I am building contains Import/Export Specifications (I think they are called that) and when I am building from source, the step that import the two MSys tables MSysIMEXSpecs and MSysIMEXColumns from Version Control.accda into the new project that it is building, fails because the tables are not present in the add-in.
The error happens in the clsDbImexSpec module in this function:
Private Sub ImportMissingTableFromAddIn(strTable As String)
If Not TableExists(strTable) Then
' This is were the problem is
DoCmd.TransferDatabase acImport, "Microsoft Access", CodeProject.FullName, acTable, strTable, strTable, True
End If
End Sub
The Version Control add-in should contain the two tables upon release.
Beautiful job reporting this issue! Thanks for taking the time to document this clearly. I was able to push a code change this morning (806e990) that should fix the issue with the missing tables.
Systeminfo
Details
The project that I am building contains Import/Export Specifications (I think they are called that) and when I am building from source, the step that import the two MSys tables MSysIMEXSpecs and MSysIMEXColumns from Version Control.accda into the new project that it is building, fails because the tables are not present in the add-in.
The error happens in the clsDbImexSpec module in this function:
The Version Control add-in should contain the two tables upon release.