|
POST
|
Two things to check. 1. in your Config.daml did you update the DATE prior to your (re)build? ArcGIS Pro will only reload an Add-in into the cache if the date has been changed in this file. 2. delete all files from your solutions folder in the.\bin directory. This is where your build results are saved; if you click into the folders, you should see a Debug, Release folder then a net6.0-windows folder that contains the actual compiled Add-in. Richard
... View more
03-07-2023
11:39 AM
|
1
|
2
|
2325
|
|
POST
|
The real question is WHY is System.Data.SqlClient.dll event included in the ArcGIS Pro 3.0 install package, and why is it located at C:\Program Files\ArcGIS\Pro\bin? ArcGIS Pro is built on .Net Framework 6.0.5 which does not support the use of System.Data.SqlClient. All Add-ins should be rebuilt to use Microsoft.Data.SqlClient and WebView 2 (vs. WebBrowser).
... View more
02-15-2023
12:23 PM
|
0
|
0
|
2073
|
|
POST
|
I guess this could have been in ArcGIS Pro 3.0 which I used for UC 2022, then deleted and reverted to ArcGIS Pro 2.9.5 for production work. That being stated this add-in is not located within my defined Add-in paths.
... View more
02-13-2023
08:58 AM
|
0
|
0
|
1838
|
|
POST
|
Found what I was looking for: ProConcepts 3.0 Migration Guide · Esri/arcgis-pro-sdk Wiki · GitHub In 2.x this line: var x = ArcGIS.Desktop.Mapping.LayerFactory.Instance.CreateFeatureLayer(uri, mapView.Map, 0, theShortName) Is now replaced by: var layerParams = new FeatureLayerCreationParams(uri) { MapMemberPosition = MapMemberPosition.AddToBottom, Name = theShortName }; var x = LayerFactory.Instance.CreateLayer<FeatureLayer>(layerParams, mapView.Map);
... View more
02-09-2023
05:11 PM
|
1
|
0
|
1192
|
|
POST
|
In ArcGIS.Desktop.Mapping within the ArcGIS Pro 3.0.3 SDK the following method has been removed: var x = LayerFactory.Instance.CreateRasterLayer(uri, mapView.Map, 0, theShortName) var x = LayerFactory.Instance.CreateFeatureLayer(uri, mapView.Map, 0, theShortName) what are there replacement?
... View more
02-09-2023
04:41 PM
|
0
|
1
|
1201
|
|
POST
|
The ESRI base maps are not in UTM_Zone_13N, they are delivered in the WGS84 Web Mercator (Auxiliary Sphere) coordinate system. The reason your points are not showing is because they do not fall on top of the base map, have your to tryed right clicking on the shapefile and select 'Zoom to Layer' to see where you end up?
... View more
02-09-2023
12:23 PM
|
0
|
0
|
6941
|
|
POST
|
I've installed ArcGIS Pro 3.0.3. On first start it is showing a 'GIS Day' tab in the Ribbon. Is anyone else seeing this in the Production Release and how do we turn it off? I know about DAMLS, but hopefully I don't have to edit one and deploy to all machines with Pro 3.0.3. All my old addins were for ArcGIS Pro 2.9, so should not show even if they are in the Add-In path(s).
... View more
02-09-2023
12:07 PM
|
0
|
3
|
1899
|
|
DOC
|
ArcGIS Pro 3.0.3 requires the 64-bit Windows 10 .Net Framework 6.0 DESKTOP Runtime to run. The regular .Net 6.0 runtime (x64) often used in Visual Studio development is not sufficient. Current version of .Net 6 is 6.0.13 and runs without issue.
... View more
02-09-2023
12:00 PM
|
0
|
0
|
16221
|
|
IDEA
|
Many of the older styles were designed for plotters and printers, as such they are not web friendly and should not be used in maps intended for the Web. That is one reason many of the older styles and symbols are not included (by default) with ArcGIS Pro.
... View more
01-31-2023
04:07 PM
|
0
|
0
|
899
|
|
POST
|
Look under: HKEY_CLASSES_ROOT\Installer\Products\6E547C621C3BB764593227D78130EE70 HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Installer\Products\6E547C621C3BB764593227D78130EE70 Note after uninstall of 2.8 at least one of these registry settings remained, it might be easier to search for ProductName='ArcGIS Pro' to find it and then delete. HKEY_LOCAL_MACHINE\SOFTWARE\ESRI\ArcGISPro is also there, it references Python.
... View more
08-22-2022
02:38 PM
|
0
|
0
|
1206
|
|
POST
|
This same issue happens with ArcGIS Pro 2.8 to 2.9 upgrade. Core issue can be two fold, left behind registry setting from ArcGIS Pro uninstaller OR there is a clone of the default Conda (Python) environment. ESRI recommended that Pro users not modify the default environment, so a user needs to clone if they want to install any additional Conda packages -e.g., deep learning modules. In regards to registry settings, we found that under Installer related settings under the apps GUID, {26C745E6-B3C1-467B-9523-727D1803EE07} were left behind. When these 3 settings were deleted the installer for the next higher version worked. Cond environment removal information at Delete an environment—ArcGIS Pro | Documentation
... View more
08-22-2022
10:59 AM
|
0
|
2
|
1210
|
|
POST
|
It would be instructive to see what line 683 actually says. Found that there is NO line 683 in the 2.8 and 2.9 version of the tool.script.validate.py. This means the error you are seeing is from NEW code added at v3.0.
... View more
07-26-2022
08:26 AM
|
0
|
0
|
1956
|
|
POST
|
same issue with ArcGIS Pro 2.9, did not have with Pro 2.8 and prior. when I UPGRADED 2.8 to 2.9 the installer works, fails for a clean install (no pro previously loaded)
... View more
07-08-2022
01:58 PM
|
0
|
0
|
2421
|
|
POST
|
An I'm using ArcGIS Pro 2.9 and still get this error. I reinstalled the Deep Learning Python library twice, no joy.
... View more
07-08-2022
10:18 AM
|
0
|
0
|
1977
|
|
POST
|
I was running the Export Training Data for Deep Learning and it reached 100%, then it started over again and it now up to 94%. Did ESRI give you any advice, e.g., do you have to kill the process, delete all chips and start over? Mine has been running for 12 hours. Could it be running once for each Zoom level in the raster image? ESRI definitely needs to add some information messages to the results so we can actually see progress.
... View more
07-07-2022
10:41 PM
|
0
|
0
|
7352
|
| Title | Kudos | Posted |
|---|---|---|
| 8 | 3 weeks ago | |
| 1 | 4 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 |
Thursday
|