Jun 11 2022 01:13 PM
I have Access as part of my MS Office Pro 2019 package. I want to test MS 365 Access Runtime using a Access program that I wrote. I have not installed the MS 365 Access Runtime software yet, because I read that having MS 365 Access Runtime and Access 2019 installed at the same time can create issues. How do I uninstall Access 2019 and then reinstall it when I finish testing MS 365 Access Runtime?
Jun 25 2022 05:17 PM
Jun 26 2022 11:56 AM
Jun 26 2022 12:03 PM
SolutionJun 27 2022 05:26 AM
you can also Emulate the runtime (without installing Anything) using /runtime Switch:
"C:\Program Files\Microsoft Office\OFFICE16\MSACCESS.EXE" "dbPathAndName" /runtime.
Jun 27 2022 05:36 AM
Jun 27 2022 06:56 AM
Jun 29 2022 03:08 PM
Jun 29 2022 03:25 PM
Did the NW application simply fail to start in runtime? Or, was an error raised?
Jun 29 2022 03:32 PM
Jun 29 2022 03:52 PM - edited Jun 29 2022 03:54 PM
I ran the Northwind template as an accdr.
Yes, there is a macro action in the AutoExec macro that fails to run in the runtime. However, removing that one macro action is all it took to eliminate that problem
The macro action in question, SetDisplayedCategories, manipulates the Navigation Pane, which is not permitted in the run time environment, so it's not unexpected that it would fail.
Jun 30 2022 11:49 AM
Jun 30 2022 12:07 PM
Ah, what you refer to as the "Relationship flow chart" is better known as the "Relationship Window" in Access and as the "Relationship Diagram" in SQL Server, so that part is cleared up.
True, relationships should be transferred when migrating tables from Access to SQL Server, and, if you open SSMS and select "Relationship Diagram" you can see and modify relationships. Note that there can be multiple versions for a database, should it happen to have a large number of tables.
In the Access Relationship Window, you can DISPLAY relationship information, but it can ONLY be modified in the SQL Server, so the Access Relationship Window should be considered a convenience, not a tool. Note, for example, that join lines do not designate Primary and Foreign Keys here; any lines drawn between fields are strictly visual aids. Moreover, by default, tables won't be displayed, so you do have to add them to the relationship window.
Jul 01 2022 11:39 AM
Great info again! Access certainly is an amazing UI. I am incorporating SQL in order to give multiple users of my db access via cell phones. I would not do it if the Access data was reachable similar to the SQL data.
Jun 26 2022 12:03 PM
Solution