3
votes
1answer
40 views

Access attributes of a deleted IFeature in ArcObjects 10.1

I am migrating code for an ArcGIS extension from 9.3 to 10.1. The code is throwing an exception in one place. My duty is just to migrate it to 10.1, so I really don't like to do any modification more ...
3
votes
1answer
34 views

How do I implement a custom IFeatureDatasetExtension?

How can I implement IFeatureDatasetExtension and register it so that ArcGIS discovers and initializes it? In arcobjects, I see that Esri has a number of coclasses that implement ...
0
votes
0answers
39 views

Migrating code to 10.1 and recycled search

I am migrating 9.3 Desktop extension to 10.1 I am getting this bug when I am trying to update a row in the geodatabase "Cannot call Store on a recycled row while editing" And seems the reason is, I ...
1
vote
0answers
70 views

ArcObjects ICommandBar is not refreshing

I am migrating a 9.3 based Desktop extension, to 10.1 The Extension, is building toolbars on the fly. It creates the toolbar, and add the commands to it. This is the snippets of the code that does ...
0
votes
0answers
144 views

Migrating existing ArcGIS 9.3 code to 10.1 [closed]

I am migrating an Extension written for 9.3 to 10.1 I followed everything in this article http://resources.arcgis.com/en/help/...000002ns00000074 , and finally I registered the assembly of the ...
8
votes
1answer
102 views

What's the ArcObjects equivalent to ArcMap's Flip button

In an ArcMap extension, I need to flip multiple lines from a selection. The ArcMap Flip button only allow to flip one feature at a time. What's the ArcObjects equibalent to the ArcMap's flip button? ...
4
votes
1answer
119 views

How to render features with different symbols depending on in memory data?

We are developing a complex ArcMap extension software which contains class extensions, a workspace extension and some ArcMap extensions. The purpose of the software is to link our existing management ...
0
votes
0answers
26 views

How to capture the “OnFeatureChange” or “OnFeatureChange” for a parcel in a cadastral fabric?

The normal "OnChangeFeature" and " OnCreateFeature" don't fire when editing in a cadastral fabric and I'm looking for similar events where I can hook into editing events that are occuring for ...
1
vote
2answers
205 views

IFeature.Store seems to bypass edit sessions and cannot be rolled back. Why?

I'm working with ArcObjects edit sessions for the first time and am having some trouble with it. The C# code I am about to discuss is part of an ArcMap 9.3 extension DLL. My problem is that calls to ...
1
vote
1answer
39 views

On which TextBox event should I call ICompletionNotify.SetComplete?

I have a IToolControl derived control which contains a c# TextBox. In the IToolControl::OnSetFocus function documentation, it states that you need to call ICompletionNotify::SetComplete() when it's ...
3
votes
2answers
300 views

How to Get my Custom Toolbar to popup when my Custom Extension is Enabled?

I am developing a custom extension for ArcMAP in Arcgis 10, and would like to display my Custom Toolbar automatically instead of having the user to select it from the customize window. Is this ...
4
votes
1answer
183 views

List all active extensions with ArcObjects

I am building an ArcGIS 10 Addin that dumps out as much debug information about a system that I can get. I am currently trying to query which extensions are active in the ArcMap session. The following ...
5
votes
2answers
426 views

Alternatives to ArcGIS Extensions using ArcObjects?

I was wondering if there are any projects based around using ArcObjects and external libraries to create open source alternatives to extensions in ArcGIS. For example 3D Analyst, Spatial Analyst etc ...
5
votes
2answers
326 views

ArcGIS - IExtension.Startup() not launching

I have an ArcGIS 10 extension that will not launch .Startup() when ArcMap loads. I can get it to hit when I go to Customize->Extensions and un-check/re-check the extension name. Is there a setting ...
1
vote
1answer
250 views

Can I listen to the ICommandBar or ICommand OnClick event?

I have an ArcMap extension and I'm listening to the IEditEvents. When the OnChangeFeature, OnCreateFeature or OnDeleteFeature event is called, I want to know if it came from the "merge(Editor_Merge)" ...