|
POST
|
Any insight on how ArcGIS Pro 2.6+ is behaving with Microsoft Office 365 for Enterprise? To me it appears that ArcGIS Pro does not recognized that version of Office. When Office 365 is used Pro acts like NO office components are available.
... View more
04-12-2021
01:23 PM
|
0
|
0
|
1444
|
|
POST
|
This is still an ongoing issue. Of note for ArcGIS Pro 2.4.x and earlier, ESRI recommended 32 bit drivers. With Pro 2.6 and above the driver has to match the bitness of Microsoft Office that you have installed. That being stated, our organization has moved to Office 365 (64 bit) and ArcGIS Pro and ArcMap does not recognized that 'any' version of Office is installed. newest Microsoft Access Engine 2016 components are available at: Download Microsoft Access Database Engine 2016 Redistributable from Official Microsoft Download Center Any ideas on enabling Excel files with ArcGIS Pro 2.6+ with Office 365 would be welcome.
... View more
04-12-2021
01:11 PM
|
0
|
1
|
3461
|
|
POST
|
Note - Microsoft Access Database Engine 2016 is now the preferred option to address this issue. The bitness you install should match the version of Office you have loaded (i.e., if you have 32 bit Microsoft Office use 32 bit engine; if you have 64 bit Office, use 64 bit engine).
... View more
04-12-2021
09:20 AM
|
0
|
0
|
3187
|
|
POST
|
Agree - Microsoft Access Database Engine 2016 now the preferred option to address this issue. The bitness you install should match the version of Office you have loaded (i.e., if you have 32 bit Microsoft Office use 32 bit engine; if you have 64 bit Office, use 64 bit engine).
... View more
04-12-2021
09:20 AM
|
1
|
0
|
7131
|
|
POST
|
State Plane Coordinate System of 2022 is approaching. What is ESRI's plan to upgrade the Map Projection engines to handle them?
... View more
03-10-2021
11:42 AM
|
0
|
1
|
4081
|
|
POST
|
This fix should be posted as a new thread so those with ArcGIS Pro 2.5 can find it 🙂 "delete C:/users/<your user id>/AppData/Roaming/Esri/AcrGISPro folder and let Pro create a new one." arcgispro 2.5
... View more
02-21-2020
09:01 AM
|
1
|
0
|
3118
|
|
POST
|
I had the this same error, in my case I fixed the issue by making my method public. public static async void LoadNewProject(CreateProjectSettings ps2) { //load the newly defined project; must be public to avoid threading errors! try { Project thePrj = await Project.CreateAsync(ps2); await Project.OpenAsync(thePrj.URI.ToString()); } catch (Exception eX) { //do something TrackErrorLibrary.reportError("SystemError", Project.Current.Name.ToString() + ". " + eX.Message + ". "); } }
... View more
02-19-2020
11:28 AM
|
0
|
0
|
5801
|
|
POST
|
When a project is closed and a new project is loaded, the API will attempt to save the previous project IF the project is dirty -not saved since last edit or add data operation. Solution: Project.Current.SetDirty(false); this will prevent the ArcGIS Pro project save window from appearing (with an undocumented exception if you select Cancel :-).
... View more
02-19-2020
11:24 AM
|
1
|
0
|
1063
|
|
POST
|
The key is that when you create your code is that many of your commands are asyn. This means they need to be in a async method and the method has to be public to avoid CalledOnWrongThreadException. For example, you could have a call in your 'regular' synchronous code to LoadTemplateProject, that then calls your async method. public static void LoadTemplateProject(string myTemplatePath) //Load the requested map template var projectFolder = System.Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments).ToString() + @"\ArcGIS\Projects"; CreateProjectSettings ps = new CreateProjectSettings() { CreateNewProjectFolder = true, LocationPath = projectFolder, TemplatePath = myTemplatePath, TemplateType = TemplateType.LocalScene }; LoadNewProject(ps); } public static async void LoadNewProject(CreateProjectSettings ps2) { //load the newly defined project; must be public to avoid threading errors! try { Project thePrj = await Project.CreateAsync(ps2); await Project.OpenAsync(thePrj.URI.ToString()); } catch (Exception eX) { MessageBox.Show(eX.Message); } }
... View more
02-14-2020
04:44 PM
|
0
|
0
|
2753
|
|
POST
|
How can this be marked as the correct answer when it does not answer the question? none of the Pro Snippiest show create a new map definition, add it to the current project, and make it the active map.
... View more
02-12-2020
05:21 PM
|
1
|
2
|
5801
|
|
POST
|
Many offices are moving from traditional installations of Office (Office 2016 and prior) toward Office 365+. The new version is 64-bit or 32-bit. Does ArcMap require a 32-bit version of Office? Does anyone have experience with ArcMap and the Microsoft Office 365+suite. We are using Windows 10 64-bit Operating Systems.
... View more
11-05-2019
02:29 PM
|
0
|
0
|
1058
|
|
POST
|
You need the Microsoft Access Database Engine components 2010, version 14.0. The 2007 version work as well but that version has conflicts with versions of Office > 2016 (i.e., if you open Access it will upgrade any installed 2007 engine components to the 2016+ version -rebreaking the fix). See: Download Microsoft Access Database Engine 2010 Redistributable from Official Microsoft Download Center
... View more
10-30-2019
09:00 AM
|
1
|
1
|
7211
|
|
POST
|
My organization is planning on moving from Office 2016 to Office 365 Pro+. I'm assuming we will need to use the 32-bit version of Office 365 to be compatible with ArcMap. Are there any known documented issues with using this version of Office with ArcMap or ArcCatalog (e.g., will .xls and .xlsx files still be accessible?). Thank you for any advice you can provide. Rich
... View more
10-30-2019
08:54 AM
|
0
|
1
|
1819
|
|
BLOG
|
We installed this patch and it did not break anything as currently configured. That being stated, it is hard to test the fix since the work around was to combine all licenses for a particular feature into a single EFL code. To test you would have to re-divide your entitlements and see if this breaks the license manager again. Rich
... View more
10-24-2019
04:26 PM
|
0
|
0
|
1004
|
|
POST
|
After talking with ESRI support they had be C:\Program Files (x86)\ArcGIS\Desktop10.7\Utilities and run the AdvancedArcMapSettings.exe as administrator. When this opened the Systems Paths were set to '1'. We reset the Styles, Templates, and Locators Paths to the correct value and all is now well. How they got to have a value of '1' is a mystery.
... View more
10-11-2019
10:49 AM
|
0
|
0
|
1063
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 4 weeks ago | |
| 1 | 4 weeks ago | |
| 1 | 06-10-2026 08:40 AM | |
| 2 | a month ago | |
| 1 | 10-01-2025 09:00 AM |
| Online Status |
Offline
|
| Date Last Visited |
Friday
|