|
POST
|
Have you tried with Encrypt=no? Previous to ArcGIS Pro 3.2 and ODBC 17.09 the default for this was no or false. With the upgrade to ArcGIS Pro 3.3 and ODBC 17.10 and higher the default is now yes or true. Also if you have a connecting string stored in a config file or settings check other attributes since there names may have changed. For example, old connection string to SQL: Data Source=<server name>;Initial Catalog=<database name> Security Info=True;User ID=<user_id>;Password=<password>;TrustServerCertificate=true</Value> </Setting> New Format: Server=<server_name>;Database=<db_name>;PersistSecurityInfo=true;UID=<user_id>;Password=<password>;TrustServerCertificate=true;Encrypt=false
... View more
02-20-2025
08:37 AM
|
0
|
0
|
1037
|
|
POST
|
For filenames used with a datafactory constructor they often support wildcard characters that support the addition of incremental numbers on a filename. Other option is to add code to delete temp files before each run.
... View more
02-13-2025
11:19 PM
|
0
|
0
|
1869
|
|
POST
|
I have an add-in that is throwing an exception that then crashes the ArcGIS Pro application. I have several try catch blocks but the error still bubbles up to the application. What is the recommend place to add code to protect the Pro application from an exception?
... View more
02-13-2025
11:07 PM
|
0
|
4
|
808
|
|
POST
|
If you are trying to do this in Code for a Add-In, to set the wait cursor for the Application while waiting for a long running process to complete use the following: FrameworkApplication.Current.MainWindow.Cursor = System.Windows.Input.Cursors.Wait; Application.UseWaitCursor = true; frmLoading.Show(); <--this is just a simple form telling the user Why they are waiting. MyrLongRunningProcess(); frmLoading.Close(); Application.UseWaitCursor = false; FrameworkApplication.Current.MainWindow.Cursor = System.Windows.Input.Cursors.Arrow;
... View more
02-06-2025
01:23 PM
|
0
|
0
|
1349
|
|
POST
|
Also, if you setup your test environment as described above, but it looks like 'the old code' keeps running, remember to CLEAR your Cache at C:\Users\<UserName>\AppData\Local\ESRI\ArcGISPro\AssemblyCache
... View more
02-05-2025
10:12 AM
|
0
|
1
|
3517
|
|
POST
|
Since you are talking about Development in Visual Studio, it sounds like you need to setup your debug environment to launch and run ArcGIS Pro. Using the debug environment gives you the ability to do 'hot reload' of code so you can edit 'most' forms and modules without restarting ArcGIS Pro, secondly recall that you need to update the config.daml <Date>02/04/2025 10:45:00 AM</Date> tag every time you rebuild and deploy your add-in. In Visual Studio you need to setup you test environment. In your .\properties folder in your project you should have a launchSettings.json file with the following: { "profiles": { "NameOfYourAddIn": { "commandName": "Executable", "executablePath": "C:\\Program Files\\ArcGIS\\Pro\\bin\\ArcGISPro.exe", "commandLineArgs": "" } } } This can be SET in Visual Studio with Project Properties -> Debug -> Open Debug Launch Profiles -> New Profile -> Executable.
... View more
02-05-2025
10:00 AM
|
0
|
0
|
3517
|
|
POST
|
Also look in \\\..\Documents\ArcGIS\AddIns\ArcGISPro
... View more
01-29-2025
02:53 PM
|
0
|
0
|
1085
|
|
POST
|
AddInContent is no longer an option in Visual Studio 2022 for ArcGIS Pro 3.x projects. 🤔
... View more
01-24-2025
11:51 AM
|
0
|
0
|
1748
|
|
POST
|
Because you have to increment the Add-In date to something 'newer' that what is previously shown. If you don't, ArcGIS Pro will not load your NEW Add-In; rather it will used the cached copy from the last successful run.
... View more
01-24-2025
11:17 AM
|
0
|
0
|
1458
|
|
POST
|
This means you installed ArcGIS Pro as local user vs. 'all' users on the targeted machine.
... View more
01-16-2025
01:53 PM
|
0
|
0
|
1368
|
|
POST
|
While checking on Microsoft Desktop Runtime .Net 8,0,x, ensure you also include the WebView2 requirement. Both of these should be deployed by your IT staff to all members of your GIS Group. It is preferred that these are 'already' installed when you try to load ArcGIS Pro 3.3 or 3.4. SIDE NOTE! ESRI allows users to install ArcGIS Pro per-user if they don't have local admin on the computer. However, the side effect is 'they' will be the only person who can see and run the software on that computer (other than a person with Admin permissions). Side effect, is if you ever do a managed deployment, which goes to ALL USERS, you will have a version collision since the managed update will NEVER see the per-user installation. In office environments using managed software deployments, PER-USER installations are BAD 🙂
... View more
01-16-2025
01:51 PM
|
0
|
0
|
1368
|
|
POST
|
When installing Microsoft Desktop Runtime .NET 8.0.x ensure you are using a Windows x64 installer, is required. Did the person who installed the software have local admin on the computer? It sounds like you have install on first use turned on as well...but that should only happen the 1st time you start Pro.
... View more
01-13-2025
09:03 AM
|
1
|
2
|
1456
|
|
POST
|
Other than the locations described above, there must be another location where shared add-ins are cached that is not published. On our case the Solution was to delete the users profile (on the offending machine) and create a new one. Downside, is you lose the individuals preferences (e.g., printers) and this must be done by a third party/local admin on the machine.
... View more
01-13-2025
08:57 AM
|
0
|
0
|
1158
|
|
POST
|
When you save to PDF you can PRINT or EXPORT to PDF. In Export you can setup options to include fonts in the file vs. being dependent on what is on the end users computer. This is useful for uncommon characters and symbols.
... View more
01-11-2025
03:50 PM
|
0
|
1
|
2305
|
|
POST
|
In this case the user has no C:\Users\[user]\AppData\Local\ESRI\ArcGISPro or C:\Users\{user id}\OneDrive\Documents\ArcGIS\AddIns\ArcGISPro folder, Yet the shared add-ins are displayed in the interface. I manually copied the add-ins from the source (where they have the [gui-id} folder paths) into the AddIns location and they began appearing in the ArcGIS Pro interface. However, the add-in still throws and error (re: undefined data type). However, everyone else who logins to this _same_ computer has no issues with the shared add-ins.... 😞
... View more
01-09-2025
12:14 PM
|
0
|
1
|
1191
|
| Title | Kudos | Posted |
|---|---|---|
| 7 | 2 weeks ago | |
| 1 | 12-17-2025 12:46 PM | |
| 1 | 11-24-2025 01:43 PM | |
| 1 | 11-25-2025 09:49 AM | |
| 1 | 07-31-2025 08:54 AM |
| Online Status |
Offline
|
| Date Last Visited |
Wednesday
|