Tagged Questions
0
votes
1answer
51 views
ArcCatalog 10.1 tree doesn't refresh after adding new custom IGxObject at runtime
I am using ArcObjects 10.1 (.NET) to customize ArcCatalog: adding new nodes in catalog tree like in the Esri's example. But when I add new child node to already expanded parent, it doesn't show up in ...
0
votes
0answers
70 views
Can i assign a list or array to IRowBuffer Row without Row.set_Value()?
Is it possible to assign a list or array to IRowBuffer Row?
I have something like the following:
I have a fields (list) with values and i have to fill a Row with that values.
public void ...
2
votes
2answers
352 views
How to get all OIDs from a table?
I have table which i need to get all the OID's from it.
I tried this code :
List<int> OIDList = new List<int>();
IQueryFilter queryFilter = new QueryFilterClass();
queryFilter.SubFields = ...
5
votes
2answers
619 views
How to insert data to a table?
I have Table in ArcCatalog, table name: (WorkOrderAss) .
This table contains 3 columns : (OBJECTID , FeatureName , Name) .
I want to insert data to this table from the code behind in C#.
Any help ...
2
votes
2answers
139 views
Adding a new field to table in ArcCatalog
I have a command button in ArcMap, this command button working to add a new field to a specific table in ArcCatalog.
e.g. i have a table contains many fields like ObjectID , FeatureName, ...
i want ...
1
vote
1answer
257 views
Getting Basic Information about ArcGIS Map Service With IGxDialog
I am having a helluva time trying to get some basic information (server URL) about an ArcGIS Map Service using the basic IGxDialog.
So far, I am able to pop open the IGxDialog, and allow the user to ...
