Hi,I am migrating a custom extension (for Windows tablets) from 10.0 to 10.1 (which is SDK version 10.1.1). I have the following code which I haven't been able to compile. The API documentation is poorly documented and couldn't find much on the Internet and in the ESRI samples.I am trying to convert the "ControlCreatingFeatureAttributes" event listener to 10.1.1, but have not had much luck (the C# version is commented out, the VB.NET version is uncommented): 'EditFeatureAttributesPage.ControlCreatingFeatureAttributes += New EventHandler(Of EditFeatureAttributesPageEventArgs)(AddressOf EditFeatureAttributesPage_ControlCreatingFeatureAttributes) AddHandler EditFeatureAttributesPage.ControlCreatingFeatureAttributes, AddressOf EditFeatureAttributesPage_ControlCreatingFeatureAttributes
Also, I haven't been able to convert the "GeometryCollectionStarted" event listener either (C# and VB.NET lines provided below): 'm_collectFeatureTask.GeometryCollectionStarted += New EventHandler(Of GeometryCollectionStartedEventArgs)(AddressOf CollectFeaturesTask_GeometryCollectionStarted) AddHandler m_collectFeatureTask.GeometryCollectionCompleted, AddressOf CollectFeaturesTask_GeometryCollectionCompleted
Any help is appreciated.Thanks.