|
POST
|
You can take a look at this sample code: https://github.com/Esri/arcgis-pro-sdk-community-samples/tree/master/Map-Exploration/CustomPopup
... View more
06-30-2017
06:09 AM
|
0
|
0
|
1068
|
|
BLOG
|
Hi Bob, With each new release the ArcGIS Pro SDK supports the latest two versions of Visual Studio. In this case: Visual Studio 2015 and Visual Studio 2017. You can always find this information here ArcGIS Pro SDK Wiki / Requirements We do support the free versions of VS 2015 Community Edition and VS 2017 Community Edition which can co-exist on your development machine with VS 2013.
... View more
06-29-2017
10:47 AM
|
1
|
0
|
407
|
|
POST
|
Try this .Net method: System.IO.Path.GetFileNameWithoutExtension (thePathVariable);
... View more
06-26-2017
02:04 PM
|
0
|
5
|
1302
|
|
POST
|
Please open the config.daml file of you add-in project and find you custom button, then change the text in the caption attribute from "DataPreparation" to "Data Preparation" or "Prepare Data" (please note the space between words). Then rebuild and run the add-in.
... View more
06-26-2017
09:20 AM
|
0
|
1
|
1478
|
|
POST
|
Hi Jonas, I tried this using ArcGIS Pro 1.4.1 (same build as yours) and VS 2015 Update 3, C# and can't find any problems. Having experienced similar issues in the past I usually traced it to another add-in, in which case removing all add-ins fixed the problem. In a rare case I traced an issue to left-over configuration files (in the Pro / bin folder) that I played with on previous installations of Pro and then forgot to remove before upgrading my Pro version. If you have done anything like this, I recommend to uninstall Pro, check for any left over files, remove them, and then reinstall Pro.
... View more
06-07-2017
10:29 AM
|
0
|
1
|
1265
|
|
POST
|
For item 1): try this class / method: https://pro.arcgis.com/en/pro-app/sdk/api-reference/#topic8998.html To see some sample go to Community Samples and search the repo for OpenItemDialog for item 2) try this sample: https://github.com/Esri/arcgis-pro-sdk-community-samples/tree/master/Map-Authoring/CustomSymbolPicker
... View more
04-20-2017
10:06 AM
|
2
|
4
|
1956
|
|
POST
|
I tested this issue using the following environment: Windows 10 - Creator Update - Version 1703 ArcGIS Pro 1.4 ArcGIS Pro SDK 1.4 Visual Studio 2013 - latest update .Net 4.6.2 developer pack I was not able to duplicate your problem, I am able to build and debug existing Add-ins and create new ones - below my screen shot will running VS 2013 in the debugger: At his point I would recommend to remove ALL add-ins from your well known add-in folder(s). My best guess is that at this point you have some other add-in that might cause the exception. By default your add-ins are stored here: <my documents folder>\ArcGIS\AddIns\ArcGISPro\
... View more
04-14-2017
12:56 PM
|
0
|
0
|
984
|
|
POST
|
I am upgrading one of our test machines to Windows Creator update in order to check this specific problem. I have another machine with Windows 10 Creator update running ArcGIS Pro 1.4 and Visual Studio 2017 and was able to build/compile/debug existing add-ins from the community samples site, however, in VS 2017 the templates are not available to create a new add-in. I will take a while to update one of my VS 2013 machines, but I will report my finding back on this thread.
... View more
04-14-2017
10:14 AM
|
0
|
0
|
984
|
|
BLOG
|
Links in your text are working now 🙂 the links under resources (bottom) haven't been updated. Thanks & gr8 job, Wolf
... View more
04-04-2017
01:05 PM
|
0
|
0
|
924
|
|
BLOG
|
Tried Chrome and Chrome shows a login prompt for the 'Prototype Lab Demo Portal' but i received this error after i logged in: We're sorry, but you need additional privileges to access this site. Please contact servicedesk@esri.com for assistanc
... View more
04-04-2017
11:19 AM
|
0
|
0
|
924
|
|
BLOG
|
Great blog Mark! Your UI looks impressive. I was not able to download the prebuilt add-in for some reason (stuck at the loading icon - maybe because I am using Edge), but I am able to check out your code on GitHub 😉 thanks much. - W
... View more
04-04-2017
10:59 AM
|
0
|
0
|
924
|
|
POST
|
The ArcGIS Pro SDK is not built on top of ArcObjects instead it is using "64 bit Engine level ArcObjects" somewhat similar to what "ArcGIS Enterprise" (formerly ArcGIS Server) is using. Also currently we only extend ArcGIS Pro through Add-ins and Configurations so it's not possible to build a standalone 64bit application using the Pro SDK with the exception of a minimal functional subset demonstrated here: https://github.com/Esri/arcgis-pro-sdk-community-samples/tree/master/CoreHost here is the ProConcept for stand alone Pro apps: https://github.com/Esri/arcgis-pro-sdk/wiki/ProConcepts-CoreHost
... View more
03-30-2017
02:23 PM
|
0
|
0
|
927
|
|
POST
|
Hi Kirk, Your question is probably best answered in a Microsoft c# Forum because the answer is found in the way Microsoft's Task-based Asynchronous Pattern (TAP) works. In general "Wait" will synchronously block until the task completes. So the current thread is literally blocked waiting for the task to complete. As a general rule, you should always use 'await' in the context of ArcGIS Pro SDK asynchronous coding. - Wolf
... View more
03-16-2017
11:07 AM
|
0
|
0
|
1072
|
|
POST
|
Hi Christopher, I tried this sample from the community samples: https://github.com/esri/arcgis-pro-sdk-community-samples/tree/master/Editing/ConstructionTool and changed the code by commenting out the "Use edit operations ..." region in AttributeButton.cs and instead uncommented the "#if OrUseThis" section following the above region. I think this closely reflects the workflow you describe above. I then used the community sample dataset and ran the sample and was able to execute the update multiple times. Maybe you can see differences between the sample and your implementation. Also I used Pro 1.4 for this.
... View more
02-07-2017
10:11 AM
|
0
|
0
|
1132
|
|
POST
|
Sorry, but I misunderstood your workflow requirements, I was under the impression that your Shapefile schema is somewhat predictable (hence the template reference) and not totally dynamic. My suggested workflow would only work if your Shapefile output always contains data of the same type like for example tax parcels, streets, or utility data and depending on your output schema type you could then use a template to generate the required Shapefile. If your output Shapefile is totally dynamic and is depending on an unknown input schema then this will not work. I had already relayed your workflow requirements to our product engineers and they are still checking on various GeoProcessing task input parameter options to see if schema creation can be made easier with the current release of ArcGIS Pro. If we find a better option (over adding one field at a time) we add the answer on this thread, but I also added your 'add multiple fields' tool to our requirement list of the next release.
... View more
02-01-2017
10:13 PM
|
1
|
1
|
2059
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 07-30-2025 12:03 PM | |
| 1 | 10-06-2025 01:19 PM | |
| 1 | 10-06-2025 10:37 AM | |
| 1 | 09-24-2025 09:12 AM | |
| 1 | 07-15-2022 07:30 AM |
| Online Status |
Offline
|
| Date Last Visited |
11-10-2025
11:48 AM
|