|
POST
|
Hi Upgrade to VS2022 17.14 solved the problem. The docs say 17.8 is supported (that is what I had before upgrade). Many thanks
... View more
a week ago
|
0
|
1
|
147
|
|
POST
|
Hi It is working great - thanks. There should be a sample or a snippet or at least a line in the help for Viewshed class or ExploratoryAnalysis class. Thanks again Mody
... View more
a week ago
|
0
|
0
|
92
|
|
POST
|
Checking my dependencies in the project and Frameworks you can see the the two lines under SDK.NET.Ref point to NET 6 All entries in the NETCore and App.WPF are pointing to NET 8
... View more
a week ago
|
0
|
1
|
190
|
|
POST
|
Thanks for the quick response. See my screen shot, it looks like I have all the versions. I do not see anywhere an option to select .NET version when I create a new project. I select the template from the list and get my project. When I edit the project file I see the line: <TargetFramework>net8.0-windows10.0.19041.0</TargetFramework> Thanks again
... View more
a week ago
|
0
|
2
|
190
|
|
POST
|
I just started to use 200.8 I have VS 17.8 Started a project with the template and just compile it (no changes) I get the error: Severity Code Description Project File Line Suppression State Error MC1000 Unknown build error, 'Could not find type 'WinRT.WinRTRuntimeClassNameAttribute' in assembly 'C:\Users\mody\.nuget\packages\microsoft.windows.sdk.net.ref\10.0.19041.31\lib\net6.0\WinRT.Runtime.dll'. Line 14 Position 23.' WpfMapApp1 C:\Projects\WpfMapApp1\WpfMapApp1\MainWindow.xaml 14 As far as I understand I have everything installed. Any idea?
... View more
a week ago
|
0
|
6
|
230
|
|
POST
|
I would like to create with code something similar to this: https://pro.arcgis.com/en/pro-app/latest/help/mapping/exploratory-analysis/interactive-viewshed.htm Using code I can read parameters from file and control the process beter. I found the Viewshed class that looks like the class I need. There are no examples I could find. I could set the Camera properties and the Viewshed properties, but I cannot connect it to any MapView. The MapView property is read-only. It is null when I run my code and no viewshed is created on screen. There should be a way to define it but I cannot find it. I connect my camera into the map (Camera camera = MapView.Active.Camera) then I just updated the properties (x,y, etc) but it did not help. Thanks
... View more
a week ago
|
0
|
2
|
152
|
|
IDEA
|
Hello all It will also be nice to be able to control the target offset
... View more
2 weeks ago
|
0
|
0
|
103
|
|
POST
|
Two GP tools aginset one very dynamic tool in ArcMap. I think Pro can do better here!
... View more
3 weeks ago
|
0
|
0
|
112
|
|
POST
|
I would like to have the same functionality as ArcMap described here: https://desktop.arcgis.com/en/arcmap/latest/extensions/3d-analyst/creating-a-profile-graph-from-line-of-sight-results.htm Creating profile from interactive line of sight in one click. The profile should include the line of sight itself as a line on the profile. It was nice functionality, it should exists in Pro too
... View more
3 weeks ago
|
0
|
2
|
199
|
|
POST
|
In your code the var outfc have a feature dataset named Results. Does it exists?
... View more
10-19-2025
09:12 PM
|
0
|
0
|
235
|
|
POST
|
We have a map with external (non esri) WMS service that show high resolution raster. We created an A0 layout and try to export it to pdf. After about 20 seconds we get small (1Mb) pdf with blank map. If we export to JPEG even on 500DPI it takes time but give us over 50M JPEG file with the raster. If we try to lower the DPI or export A1 layout the pdf is created fine. When the export pdf works the Pro takes less the 1.5Gb of memory and very little CPU. The machine have no resource problem. Our guess is that when you export to JPEG you have a few requests for the service and it works while pdf request one big request that the wms service reject. Anybody have and idea or run into this?
... View more
09-29-2025
06:45 AM
|
0
|
0
|
197
|
|
POST
|
What is changing is that the Pro license will not be "local" (float or single) any more. You can have the Pro license in esri cloud or on local Enterprise only.
... View more
09-20-2025
09:55 PM
|
0
|
0
|
490
|
|
POST
|
After playing a lot (and consult AI) this is my solution XML <ComboBox x:Name="types" DisplayMemberPath="Name" ItemsSource="{Binding TypesItems}" SelectedItem="{Binding SelectedType, Mode=TwoWay}"/> Helper class: public class MyItemClass
{
public string Name { get; set; }
} Fill the list private ObservableCollection<MyItemClass> _TypesItems;
// fill the list in ctor
TypesItems = new ObservableCollection<MyItemClass>
{
new MyItemClass { Name = "Item 1" },
new MyItemClass { Name = "Item 2" },
new MyItemClass { Name = "Item 3" },
};
public ObservableCollection<MyItemClass> TypesItems
{
get => _TypesItems;
set => SetProperty(ref _TypesItems, value);
}
and finally get the selected private MyItemClass _selectedType;
public MyItemClass SelectedType
{
get => _selectedType;
set => SetProperty(ref _selectedType, value);
}
... View more
09-17-2025
06:35 AM
|
1
|
0
|
541
|
|
POST
|
Already done this. It does not looks like MVVM - is that the only way?
... View more
09-16-2025
09:34 PM
|
0
|
1
|
560
|
|
POST
|
I am trying to put a ComboBox in my dockpane with pre defined string values (Something like Polygon/Polyline/Point). They never change. All the examples I found have ObservableCollection with some classes or other complex behavior that I do not need. My ComboBox is coming out empty. Anybody have very simple example on how to do it? Thanks
... View more
09-16-2025
07:07 AM
|
0
|
5
|
612
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 09-17-2025 06:35 AM | |
| 2 | 07-21-2025 10:13 PM | |
| 2 | 06-15-2025 12:55 AM | |
| 1 | 01-22-2018 02:51 AM | |
| 1 | 05-10-2025 10:06 PM |
| Online Status |
Offline
|
| Date Last Visited |
Saturday
|