EDN (ESRI Developer Network)

EDN: ESRI Developer Network

EDN (ESRI Developer Network)

September 2007 - Posts

The following content changes related to ArcGIS Desktop, ArcGIS Engine, and ArcGIS Server development have been made this week.

Updated Merge Network Features sample
Programming language(s): VB6
Development platforms: ArcGIS Desktop
The Merge Network Features sample has been enhanced based on feedback from the ArcGIS Desktop Discussion Forums to support the same functionality that is available in the Merge command contained with the ArcMap Editor.  Specifically, it now allows you to select from which feature the attributes should be retained when the features are merged.

Deploying your custom ArcMap command
Programming language(s): C# or VB.Net
Development platforms: ArcGIS Desktop
You can deploy your ArcMap customization in a number of ways. Read More...

The following content changes related to ArcGIS Desktop, ArcGIS Engine, and ArcGIS Server development have been made this week.

Corrected issue in the VB.NET version of the Extensions sample
Programming language(s): VB.Net
Development platforms: ArcGIS Desktop
As noted in this forum post, there is an error in the VB.NET version of the item template for creating an extension within the ArcGIS Visual Studio Integration Framework delivered at 9.2.

This line in the template:
If m_enableState <> 0 Or value = m_enableState Then Exit Property

should be:
If m_enableState <> 0 And value = m_enableState Then Exit Property

If the error is not corrected, you cannot enable your extension in the Tools | Extensions dialog. Read More...