I am in the process of converting an ADP (Access Data Project) to an ACCDB. So far, it has gone pretty well, except that the views no longer seem to be updatable now that they are actual links into the SQL Server database.
Specifically, the following VBA works fine for tables, but not for views:
DoCmd.DoMenuItem acFormBar, acEditMenu, 8, , acMenuVer70
DoCmd.DoMenuItem acFormBar, acEditMenu, 2, , acMenuVer70
DoCmd.DoMenuItem acFormBar, acEditMenu, 5, , acMenuVer70 'Paste Append
The 3rd line throws the exception "PasteAppend isn't available now" -- and it is absolutely correct (the paste menu is greyed out). But, to reiterate, this problem did not occur for ADP views using the same SQL server database.
Unfortunately, Microsoft has discontinued support for ADPs, so we are forced to migrate.
Any suggestions how to get around this?