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...