POST
|
Buried away on the ArcMap help file are the system requirements for each version, this is useful for developers as the required version of Visual studio changes with the version of ArcMap, so for 10.5 look here: https://desktop.arcgis.com/en/system-requirements/10.5/arcobjects-sdk-system-requirements.htm If you want to review other versions the tiny dropdown at the top allows you to change it. Hope that helps?
... View more
11-13-2020
04:03 AM
|
0
|
0
|
110
|
POST
|
Thanks, I actually want to update the edit box's text on the ribbon not just read its value but I think I can manage that with events as you suggest.
... View more
05-26-2020
01:52 AM
|
0
|
0
|
68
|
POST
|
Hi Uma, FileVersion property returned "2.3.3.15900", which is more than I want as I'm trying to display the version in the same way it's shown on ArcGIS Pro's "About" screen. Changing the last line of the code you provided did the trick: private string GetProVersion() { Assembly assembly = Assembly.GetEntryAssembly(); FileVersionInfo fvi = FileVersionInfo.GetVersionInfo(assembly.Location); return $"{fvi.ProductMajorPart}.{fvi.ProductMinorPart}.{fvi.ProductBuildPart}"; } Thank you very much for your help!
... View more
04-30-2020
02:54 AM
|
0
|
0
|
71
|
Online Status |
Offline
|
Date Last Visited |
Monday
|