|
IDEA
|
Once solution would be for ESRI to publish the styles for Pro to AGOL and have them available 'from the web' similar to how you can get images from Microsoft Word (Insert ribbon, Pictures group, Stock Images) . This would be connected on the Appearance Ribbon tab | Drawing Group, Import Symbiology.
... View more
05-06-2021
02:20 PM
|
0
|
0
|
5281
|
|
POST
|
probably, but then we would have to have all our users login to their organizational account in ArcGIS Pro and ensure all +500 staff actually have a account. Since we only have 150 AGOL accounts that is a problem 🙂
... View more
04-30-2021
11:19 AM
|
0
|
1
|
3401
|
|
IDEA
|
In ArcGIS Pro 2.4.x and prior if you place a map template at C:\Program Files\ArcGIS\Pro\Resources\ProjectTemplates it was shown in the list of default templates on ArcGIS Pro startup (project selection screen). This was used by organizations to publish organizational standard base map templates to users with no customization of ArcGIS Pro itself. One only had to copy the template to the correct folder for it to show in the list.
... View more
04-30-2021
09:49 AM
|
7
|
3
|
1940
|
|
POST
|
Nice, but an organization would want to modify the install package so this was set automatically. One can't assume 2 or more users are going to do anything the same way (or follow directions). Any idea if these settings get saved in the registry?
... View more
04-30-2021
09:42 AM
|
0
|
3
|
3413
|
|
POST
|
It was fairly easy in ArcGIS Pro 2.4.x and prior because if you place a map template at C:\Program Files\ArcGIS\Pro\Resources\ProjectTemplates it was shown in the list of default templates on ArcGIS Pro startup (project selection screen). With ArcGIS Pro 2.6 they took this capability away 😞
... View more
04-30-2021
09:39 AM
|
0
|
0
|
3414
|
|
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
|
1488
|
|
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
|
3506
|
|
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
|
3214
|
|
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
|
7201
|
|
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
|
4153
|
|
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
|
3210
|
|
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
|
5856
|
|
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
|
1084
|
|
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
|
2780
|
|
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
|
5856
|
| Title | Kudos | Posted |
|---|---|---|
| 8 | 3 weeks ago | |
| 1 | 3 weeks ago | |
| 1 | 06-17-2026 08:21 AM | |
| 1 | 06-15-2026 08:41 AM | |
| 1 | 06-10-2026 08:40 AM |
| Online Status |
Offline
|
| Date Last Visited |
Monday
|