|
POST
|
We ran into a similar issue with updating machines for ArcGIS Pro 3.4 to 3.5, the solution as stated above is to download and install the newest available version of Microsoft Edge WebView2 runtime (x64) 'as administrator'. However, of NOTE is on March 12, 2026 Microsoft released an update for 80 issues, then then released a new version on March 20th and March 23rd. Usually they only have 1 release per month. This means the 20th edition 146.0.3856.72 had a significant 'problem'. If you have this installed version, update to build 146.0.3865.78 or higher then retry your ArcGIS Pro installation. To check your version in regEdit see HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\EdgeUpdate\ClientState and look in each subkey. Version 78 has a subkey of . \ClientState\{F3017226-FE2A-4295-8BDF-00C3A9A7E4C5}
... View more
03-26-2026
02:35 PM
|
0
|
1
|
4070
|
|
POST
|
See ArcGIS Pro Life Cycle | Esri Support for lifecycle dates.
... View more
03-13-2026
09:18 AM
|
0
|
0
|
410
|
|
POST
|
Hello, The Professional Plus user type was announced in June 2024 and ArcGIS Pro 3.3 was released on May 07, 2024. ArcGIS Pro 3.3 is the earliest version that I would expect the new user type to work with 'seamlessly'. In regards to your other question, yes ArcGIS Pro 3.4 and 3.5 can be used with a Portal or AGOL site at different versions. I have used those versions running ArcGIS Enterprise 11.5 and v12 (and Pro 3.3 with Enterprise 11.4). ArcGIS Pro 3.0 SP 6 is the last release of 3.0 and is retired -it was issued in August 2023 so I would not expect support for Professional Plus.
... View more
03-13-2026
09:16 AM
|
0
|
1
|
410
|
|
POST
|
Take a look at this older post: How exactly do you make a .stylex file ? - Esri Community
... View more
03-10-2026
09:38 AM
|
1
|
1
|
608
|
|
POST
|
ArcGIS Pro supports Graphics to Features command for basic graphic features (e.g., point, line, polygon). You could probably try the same for 'text' elements but you would most likely get a point for the lower left of the first character of the sentence (i.e., you won't get the text string as a set of lines for example). Best alternative would be to look into converting the graphic text into annotation.
... View more
03-10-2026
09:35 AM
|
1
|
2
|
540
|
|
POST
|
My first question is why do you want the field to be TEXT in the database, could you not have it be an INT then just convert it in code when needed? Secondly, you did not say the database type, but if it is in SQL or SQLite you can add an autoincrement field to the table. Copy code CREATE TABLE users (
my_new_id INTEGER PRIMARY KEY AUTOINCREMENT,
username TEXT NOT NULL,
email TEXT NOT NULL
); Auto-increment fields cannot be updated manually unless explicitly allowed. If you delete rows, the auto-increment counter does not reset unless you manually reset it. Use BIGINT instead of INT if you expect very large numbers. you can set a 'start' number for the sequence as well. an autoincrement field DOES NOT have to be a primary key (or a key at all)
... View more
03-10-2026
09:31 AM
|
0
|
0
|
676
|
|
IDEA
|
ESRI is requiring the migrating all users to Named or Single use licensing, in the named user arena they need to provide a no cost subscription management solution. The solution should provide admins the ability to estimate actual subscription usage and license Pro usage. This is needed to justify organizational purchases.
... View more
03-09-2026
09:56 AM
|
0
|
0
|
1045
|
|
POST
|
There are several options for this, one would be to create the graphics layers BEFORE you run the custom the tool so you can grab a handle to the layer AFTER you return from await. Assumption here is you are using the same map. This would work with any specific layer in the map., I'm just assuming you are drawing on the graphics layer. { // get params var map = MapView.Active.Map; var layerParams = new LayerCreationParams("My New Graphics Layer"); // create graphics layer GraphicsLayer newLayer = LayerFactory.Instance.CreateLayer(layerParams, map , LayerPosition.AddToTop); Bool success=false; success = await myTask(my variables); // Find the first graphics layer in the map if we returned from the task without error If (success==true) { var graphicsLayer = map.GetLayersAsFlattenedList().OfType().FirstOrDefault(); ... do more stuff ... or use newLayer } } Of note, at ArcGIS Pro 3.4 maps started having a default graphics layer. This means you can grab that instead of creating your own layer (but since you are working with a custom tool, having your OWN graphics layer would have value). // Get the first available GraphicsLayer in the map
var graphicsLayer = MapView.Active.Map.GetLayersAsFlattenedList()
.OfType<GraphicsLayer>().FirstOrDefault();
... View more
03-06-2026
09:13 AM
|
0
|
0
|
426
|
|
POST
|
You should check the version of ArcGIS Pro version (to include Service Pack) and Visual Studio Code you have installed on each machine. For VS Code also check and the available resources -look at the version numbers. Most likely a resource is unavailable or needs to be updated on the machine with the problem.
... View more
02-27-2026
08:50 AM
|
0
|
0
|
191
|
|
POST
|
FYI - ArcGIS Pro 3.5 is now at Service Pack 6, these SPs are cumulative, so you only need to download SP 6 and apply it to your ArcGIS Pro 3.5 installation. The ArcGIS Pro 3.5 Issues Addressed document is updated with each SP release.
... View more
02-26-2026
08:28 AM
|
1
|
0
|
728
|
|
POST
|
Probably had a missing Transformation in the NAD 83 (2011) coordinate system definition for the layer. But interesting to hear that installing the Coordinate System pack resolved the issue.
... View more
02-24-2026
08:54 AM
|
0
|
0
|
907
|
|
POST
|
The https://elevation.arcgis.com path leads to an ArcGIS Server, but NO services are available. Have you tried https://elevation3d.arcgis.com/arcgis/rest/services?
... View more
02-23-2026
02:44 PM
|
0
|
0
|
910
|
|
POST
|
Converting to Excel results in a well-defined field type for each column in the file. When using a csv the system guesses the field type based on a .ini file -or the first 20 rows in the CSV. Also, if this is a large .csv ensure the file is NOT in the Cloud since you cannot guaranteed all the data to be accessible at all times on your local device (unless you explicitly checked that option in OneDrive for your file). This would explain why it appears to work but the expected records are not returned.
... View more
01-30-2026
09:00 AM
|
0
|
0
|
417
|
|
POST
|
In regards to your DAML, try \ instead of / for the paths. You have: <button id="FooProTest_ConnectButton" keytip="Z" caption="ConnectButton" className="ConnectButton" loadOnClick="true" smallImage="Images/CloudError16.png" largeImage="Images/CloudError32.png"> In all my successful builds I've been using: <button id="FooProTest_ConnectButton" keytip="Z" caption="ConnectButton" className="ConnectButton" loadOnClick="true" smallImage="Images\CloudError16.png" largeImage="Images\CloudError32.png"> also ensure the CloudError32.png and CloudError16.png build actions are identical; If you click on the image name in Solution Explorer, the advanced properties should be set to AddInContent and Do not copy. Ensure the Misc area of properties shows the correct full path to the image.
... View more
01-29-2026
08:20 AM
|
0
|
0
|
602
|
|
POST
|
You can use the Upgrade Geodatabase tool in ArcGIS Pro or a Python script run on an ArcGIS Pro or ArcGIS Server machine to upgrade your geodatabase. Recall that updating the ArcGIS Server software (ArcSDE) version does not automatically update your geodatabases of FCs, you have to run an upgrade step to do that on each of your databases. Rich
... View more
01-23-2026
02:43 PM
|
0
|
0
|
1444
|
| Title | Kudos | Posted |
|---|---|---|
| 8 | a week ago | |
| 1 | 2 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
|