|
POST
|
Hi, commonReferenced.dll must be signed if you want to add it to GAC. More info about placing library to GAC is here. After your library is in GAC, you need to delete old library reference, then add new library reference from GAC. "Copy local" set to false.
... View more
09-11-2023
07:03 AM
|
0
|
0
|
1131
|
|
POST
|
Hi, There is no direct way to specify ArcGIS Pro Table to WPF datagrid. I would recommend you use ArcGIS Pro TableControl instead of WPF datagrid. 1. Add your result 'tbl' to map and get StandaloneTable. // Inside QueuedTask.Run
var table_params = new StandaloneTableCreationParams(tbl);
var standaloneTable = StandaloneTableFactory.Instance.CreateStandaloneTable(table_params, MapView.Active.Map);
return standaloneTable 2. Create TableControlContent from StandaloneTable. // create the content
var tableContent = TableControlContentFactory.Create(standaloneTable); 3. Specify TableControl TableContent property with your created TableControlContent tableControl.TableContent = tableContent; Sample with TableControl here. https://github.com/Esri/arcgis-pro-sdk/wiki/ProGuide-TableControl
... View more
09-11-2023
06:04 AM
|
1
|
2
|
2217
|
|
POST
|
VS: Version 17.4.3 ArcGIS.CoreHost.dll: 13.1.0.41833 ArcGIS.Core.dll: 13.1.0.41833 Check which ArcGIS Pro extensions for Visual Studio you use. I use 3.1.0.48133
... View more
09-07-2023
06:41 AM
|
0
|
1
|
2494
|
|
POST
|
I have tested your solution. One thing I have changed was path to dwg and dwg file name. It finished with code 0.
... View more
09-07-2023
06:05 AM
|
0
|
3
|
2506
|
|
POST
|
Hi, Depending on your screenshots issue is outside code you have added. There is no code with Console.WriteLine("Finished"); or Console.WriteLine("Completed");
... View more
09-07-2023
05:38 AM
|
0
|
5
|
2520
|
|
POST
|
I have added result to map to check result source path only. At it shows what the result was created inside inputs database. So If you want to have result in memory workspace, your inputs must be in memory workspace too.
... View more
09-05-2023
02:42 AM
|
0
|
0
|
2712
|
|
POST
|
Hi, If you own 3D Analyst license you can call geoprocessing tool Create TIN. If not, you can call python code from here
... View more
09-04-2023
12:11 PM
|
0
|
0
|
1171
|
|
POST
|
Hi, I have tried to make sample with output "memory\QueryTable". I have added parameter to geoprocessing tool to add result to map. Geoprocessing created query table in my enterprise database where input data was located.
... View more
09-04-2023
12:01 PM
|
0
|
2
|
2723
|
|
POST
|
Link, I suggested you, contains different geodatabase access code: MemoryConnectionProperties memoryConnectionProperties = new MemoryConnectionProperties();
Geodatabase geodatabase = SchemaBuilder.CreateGeodatabase(memoryConnectionProperties);
... View more
09-03-2023
11:27 AM
|
0
|
4
|
2759
|
|
POST
|
I have found that error only on different Android devices. It happens very rarely. Application is used for river navigation so that event fires many times during navigation time. I have added different types of checking for validity of mapView.currentViewpointCenter. But error still happens. In one of ArcGIS AppStudio samples I have found code where mapView.currentViewpointCenter assigns to const: const viewpointCenter = mapView.currentViewpointCenter Then uses assigned value in code. I am not expert in QT but maybe it could be way to avoid error.
... View more
09-02-2023
12:12 PM
|
0
|
1
|
1724
|
|
POST
|
Hi, For the output path you can use the "memory" workspace (as noted here). Look at this thread too: Solved: How to copy feature class to in memory geodatabase - Esri Community
... View more
09-02-2023
11:59 AM
|
0
|
0
|
2813
|
|
POST
|
ExecuteToolAsync(String,IEnumerable<String>,IEnumerable<KeyValuePair<String,String>>,CancelableProgressor,GPExecuteToolFlags) Method—ArcGIS Pro
... View more
08-31-2023
12:03 PM
|
0
|
1
|
5696
|
|
POST
|
Look at the @Wolf sample in ArcGIS Pro SDK thread It uses CancelableProgressorSource as parameter for geoprocessing call
... View more
08-31-2023
11:06 AM
|
0
|
3
|
5699
|
|
POST
|
Hi, Try to catch EditCompletedEvent event in your viewmodel. EditCompletedEventArgs has property CompletedType. It describes the type of an EditCompletedEvent and could be one enum EditCompletedType values. private Task OnEditCompleted(EditCompletedEventArgs args)
{
switch (args.CompletedType)
{
case EditCompletedType.Save:
break;
case EditCompletedType.Discard:
break;
case EditCompletedType.Operation:
break;
case EditCompletedType.Undo:
case EditCompletedType.Redo:
// do your stuf
break;
case EditCompletedType.Reconcile:
break;
case EditCompletedType.Post:
break;
default:
throw new ArgumentOutOfRangeException();
}
}
... View more
08-31-2023
08:11 AM
|
2
|
0
|
1124
|
|
POST
|
1. Try to delete line: var progsrc=new CancelableProgressorSource(progDlg); 2. Try to change geoprocessing flag by removing GPExecuteToolFlags.GPThread. 3. If your geoprocessing fails (invalid parameters and etc.) when you will not see progress dialog too
... View more
08-31-2023
02:43 AM
|
0
|
0
|
5713
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | Thursday | |
| 1 | Tuesday | |
| 1 | 4 weeks ago | |
| 1 | 4 weeks ago | |
| 2 | 04-24-2026 08:33 AM |
| Online Status |
Offline
|
| Date Last Visited |
yesterday
|