|
POST
|
Short answer the maximum number of results returned is set to 1000 within ArcGIS Enterprise (Server) by default. There is a setting for this for each map service.
... View more
08-23-2023
11:00 AM
|
0
|
0
|
1150
|
|
POST
|
In regards to 'seeing' the values set in your XML config file from an Add-in, you can pull the properties from the namespace (e.g., ArcGIS.Desktop.Core.ApplicationOptions) ArcGIS.Desktop.Core Namespace (ArcGIS.Desktop.Core)—ArcGIS Pro OR you could just read the .xml config file just like any other text file from your Add-in. For example,
... View more
08-15-2023
11:08 AM
|
0
|
0
|
2273
|
|
POST
|
The Pro.settingsConfig is not actually used with an Add-In, rather it sets default behavior for ArcGIS Pro on startup. The config file is just a human readable text file. The easiest way to point to this is to add the ADMIN_SETTINGS_PATH command line parameter during an ArcGIS Pro silent installation, The second way to configure client machines is by editing the Windows Registry. Use this option if ArcGIS Pro is already deployed or if you don't want to do a silent installation. To configure the client machines, create a string value called AdminSettingsPath in HKEY_LOCAL_MACHINE\SOFTWARE\ESRI\ArcGISPro\Settings. Set the value data to the path of the network share or local folder that contains the deployed Pro.settingsConfig file. Some XML Tags you could include in your config file are shown at https://pro.arcgis.com/en/pro-app/latest/get-started/administrator-settings-list.htm Have you considered revising how your Add-In works to take advantage of a Tabbed Interface?
... View more
08-15-2023
10:56 AM
|
0
|
1
|
2274
|
|
POST
|
I think this is what you are looking for: Manage application settings—ArcGIS Pro | Documentation There are three basic steps to control application settings in your ArcGIS Pro deployment: Author a Pro.settingsConfig file. Post the file to a directory or share accessible by users. Configure the user machines to use the deployed file.
... View more
08-14-2023
12:42 PM
|
0
|
3
|
2359
|
|
POST
|
The Field Calculator is does its work outside an edit session, so if your are dependent on an 'edit session' existing then those changes would not be caught.
... View more
07-18-2023
10:52 AM
|
0
|
0
|
2059
|
|
POST
|
If you have a ArcGIS Developer Subscription or access to My.esri.com via a Subscription (and our Primary ESRI contact enabled it) you should be able to click the Download button and download the MIS, ISO, etc. file. There is an option or order an actual thumb drive with the installers as well, but you have to Request this, it is no longer sent automatically to ESRI customers.
... View more
07-03-2023
08:54 AM
|
0
|
0
|
1363
|
|
POST
|
you may be looking for C:\Program Files\ArcGIS\Pro\Resources\ProjectTemplates
... View more
06-28-2023
02:24 PM
|
0
|
1
|
1373
|
|
POST
|
Simplest is to realize that 'deprecated' just means it may not work in ArcGIS 3.2, which will not be out till 2025 or so.
... View more
06-26-2023
08:33 AM
|
0
|
0
|
1634
|
|
POST
|
Suggest you place the code on a network share drive, thus you don't have to deploy the python code to every machine. Then the path would be \\myserver\mypythongcode\thecode.py
... View more
06-22-2023
01:01 PM
|
0
|
1
|
1460
|
|
POST
|
Is there an installer for Data Reviewer for ArcGIS Pro 3.1? Nothing is listed in the download center for this extension.
... View more
06-20-2023
04:09 PM
|
0
|
3
|
3572
|
|
IDEA
|
Here is the message from ArcGIS Pro 3.1.1 which references Microsoft.NETCore.App
... View more
05-12-2023
03:05 PM
|
0
|
0
|
8508
|
|
IDEA
|
ArcGIS Pro 3.1 requires 6.0.5 or Higher. We installed Windows Desktop Runtime 6.0.x (was 13 now 16) which does not work and is. We have also tried the pure Microsoft .Net Runtime (x64) which does not resolve the issue. Recall, most end users do not have permissions to Install .Net Framework themselves. Your documentation needs to use the Exact given the wide array of options at Download .NET 6.0 (Linux, macOS, and Windows) (microsoft.com)<>.
... View more
05-11-2023
02:00 PM
|
0
|
0
|
8587
|
|
IDEA
|
ArcGIS Pro 3 requires .Net Framework 6.0 (64 bit) but there are MANY versions available. ESRI also specifies that a Windows Installer must be used (why?). It appears the installer that most would use, Microsoft Windows Desktop Runtime 6.0.x is not enough to get ArcGIS Pro to work. One actually needs Download ASP.NET Core 6.0 Runtime (v6.0.16) - Windows x64 Installer (microsoft.com) as well. The fact that a user even has to do hit or miss research is 'BAD' Please update help documents with explicit software requirements vs. just saying 'Net Framework 6.0 is required'. Thank you,
... View more
05-11-2023
12:27 PM
|
0
|
7
|
8613
|
|
POST
|
Sounds like you are using some internal project bar related to the tool you are running, vs. one you wrote yourself. When you need full control of the bar use a System.Windows.Forms.ProgressBar on a WinForm . For example, here I'm loading a database into memory within an ArcGIS Pro addin. [cid:[email protected]] Code behind looks similar to this. private Form myProgressBar; public void LoadDatabase (SqlDataReader theDataSource) { if (myProgressBar==null) { myProgressBar = new wsdotCode.frmProgress(); } System.Windows.Forms.ProgressBar pbar; pbar = myProgressBar.Controls.Find("progressBar1", true).FirstOrDefault() as System.Windows.Forms.ProgressBar; pbar.Value = 0; myProgressBar.Show(); //increment the progress bar and read data While not EOF(theDataSource) { LoadRow(theDataSource) progressUpdate(pbar); } myProgressBar.Close(); } private void progressUpdate(System.Windows.Forms.ProgressBar myBar) { //step size is set in the designer myBar.PerformStep(); myBar.Refresh(); myBar.Parent.Refresh(); if (myBar.Value >= 100) { System.Threading.Thread.Sleep(200); } else { System.Threading.Thread.Sleep(100); } }
... View more
05-09-2023
08:45 AM
|
0
|
0
|
1585
|
|
POST
|
An add-in built to run under ArcGIS Pro does require the targeted desktop software to be loaded on the build machine. Since the software never 'starts' on the build machine you would never need to point it to a license server, single use license, or ArcGIS online organization named user account. If Pro is started it would open to the 'licensing' screen and give you an opportunity to enter credentials or the license server name. Thus you can actually validate that the installer 'worked' without a license as well.
... View more
05-02-2023
09:21 AM
|
1
|
0
|
1978
|
| 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
|