|
POST
|
Hi @Min The "Project" button is a special button and cannot be customized. To change the application title, please use a "Managed Configuration". ProConcepts: Configuration Configuration Samples.
... View more
04-28-2025
03:06 PM
|
1
|
0
|
1764
|
|
POST
|
Hi @JoePolaski You have Pro 3.2 on the machine, correct? Based on the version of RegisterAddIn.exe that you shared above, it is at version 3.3. On your machine, do you have a C:\ProgramData\EsriProCommon folder? It should have the RegisterAddIn.exe and it should be at 13.2.0.XXXX. So let's confirm that first. When you are targeting ArcGIS Pro 3.2, your solution should use the exe from this location. (Which is the next step to fix)
... View more
03-18-2025
11:38 AM
|
0
|
0
|
2650
|
|
POST
|
Two quick checks: You mentioned that RegisterAddIn.exe is in your C:\Program Files\ArcGIS\Pro\bin. 1. Can you please check its version? Right click on the exe and click Details tab to get the version. 2. Next, your esriAddInX file for your solution should be in your solution's Debug folder. When you double click it, what happens? I think for some reason your RegisterAddIn.exe is not matching the version of ArcGIS Pro on your machine. So that is what I am trying to check.
... View more
03-14-2025
06:25 AM
|
0
|
1
|
2686
|
|
POST
|
If you don't already have this option turned on, can you please turn on the Visual Studio verbosity option to detailed? And then, if you can compile your project, please check and see in the output exactly where RegisterAddIn.exe is being invoked from. As example, I see this in my output window when building addins: Task "Message"
ArcGISFolder Name: C:\Program Files\ArcGIS\Pro\bin...
Done executing task "Message".
Task "Message" skipped, due to false condition; (!Exists('$(ArcGISFolder)')) was evaluated as (!Exists('C:\Program Files\ArcGIS\Pro\bin')).
Task "Message"
Execute RegisterAddIn.exe "C:\PathTo.esriAddinX" /s...
Done executing task "Message".
Task "Exec"
RegisterAddIn.exe "C:\PathTo.esriAddinX" /s
... View more
03-11-2025
11:03 AM
|
0
|
3
|
2756
|
|
POST
|
You have Pro 3.2 installed (downgraded from 3.3). When you build addins, your visual studio project references the 3.1 Esri.ArcGISPro.Extensions30 Nuget package. Is this correct? Can you please check the following: * Where is RegisterAddin.exe on your machine? Is it in the install-location\ bin folder or C:\ProgramData?
... View more
03-11-2025
10:00 AM
|
0
|
1
|
2769
|
|
POST
|
By any chance, could your layers be set to be "un selectable"? It is a setting that you can see in the table of contents. Like the screenshot:
... View more
03-11-2025
08:51 AM
|
1
|
0
|
942
|
|
POST
|
Try to link the MapFrame's camera to the active map view's camera - Something like this: Camera camera = MapView.Active.Camera; newMapFrame.SetCamera(camera);
... View more
03-05-2025
11:52 AM
|
2
|
0
|
1256
|
|
POST
|
Hi A comment pattern to await the QueudTask is to use the await key word. Task t1 = await QueuedTask.Run(() =>
{
try { //do some long running work }
catch (Exception eX) { // handle the error }
}); A good resource that documents Pro's Asynchronous programming concepts is available in this wiki: ProConcepts: Asynchronous Programming in ArcGIS-Pro
... View more
02-27-2025
02:24 PM
|
0
|
2
|
1244
|
|
POST
|
@MichaelAustinESGG The Bookmark control is a Gallery control. Pro's "Ready To Use Tools" control on the Analysis tab is also a gallery. The Pro SDK Item template for Gallery will get you started with this.
... View more
02-19-2025
09:42 AM
|
1
|
0
|
916
|
|
POST
|
That sounds good! Please go ahead and close the issue.
... View more
02-18-2025
12:00 PM
|
0
|
0
|
1879
|
|
POST
|
The Pro SDK also provides a .NET API that allows you to create new feature classes with fields. https://github.com/Esri/arcgis-pro-sdk/wiki/ProConcepts-DDL
... View more
02-18-2025
09:41 AM
|
0
|
0
|
877
|
|
POST
|
@MK13 Please checkout @vanesch response here: https://community.esri.com/t5/arcgis-pro-sdk-questions/after-upgrading-to-3-4-some-of-the-addin-icons-don/m-p/1585647#M12642
... View more
02-14-2025
11:20 AM
|
1
|
0
|
3511
|
|
POST
|
Hi @MK13 Can you please attach a small addin solution and post? (With the image).
... View more
02-13-2025
11:16 AM
|
0
|
1
|
3143
|
|
POST
|
Exactly! Unfortunately, there is no way to avoid having all the other entries right now.
... View more
02-13-2025
10:49 AM
|
0
|
0
|
1924
|
|
POST
|
Hi @RITASHKOUL You will be able to fix this with ArcGIS Pro 3.5, using the Pro public API //item is your custom item
//RefreshProjectItemsAsync: New method available in 3.5
Project.Current.RefreshProjectItemsAsync(item.Path); Until 3.5 is released later this year, please use this temporary workaround to refresh your custom item: //This uses methods in an internal namespace.
//Temporary workaround until 3.5 is released.
((ArcGIS.Desktop.Internal.Core.IInternalProject)Project.Current).RefreshProjectItemsAsync(item.Path);
... View more
02-12-2025
03:55 PM
|
1
|
0
|
612
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 3 weeks ago | |
| 1 | 01-21-2026 10:48 AM | |
| 1 | 09-18-2025 03:09 PM | |
| 1 | 11-04-2025 08:25 AM | |
| 1 | 09-23-2025 09:31 AM |
| Online Status |
Offline
|
| Date Last Visited |
3 weeks ago
|