-
ArcEngine打开cad文件的几种方法
-
方法一、通过遍历CAD数据集,依次加载中点线面注记等图层,所加载的数据均为一个独立的图层。
IWorkspaceFactory pWorkspaceFactory; IFeatureWorkspace pFeatureWorkspace; IFeatureLayer pFeatureLayer; IFeatureDataset pFeatureDataset; //打开CAD数据集 pWorkspaceFactory = new CadWorkspaceFactoryClass(); pFeatureWorkspace = (IFeatureWorkspace)pWorkspaceFactory.OpenFromFile(directoryPath, 0); //打开一个要素集 pFeatureDataset = pFeatureWorkspace.OpenFeatureDataset(fileName); //IFeaturClassContainer可以管理IFeatureDataset中的每个要素类 IFeatureClassContainer pFeatureClassContainer = (IFeatureClassContainer)pFeatureDataset; //对CAD文件中的要素进行遍历处理 for (int i = 0; i < pFeatureClassContainer.ClassCount - 1; i++) { IFeatureClass pFeatureClass = pFeatureClassContainer.get_Class(i); if (pFeatureClass.FeatureType == esriFeatureType.esriFTAnnotation) { //如果是注记,则添加注记层 pFeatureLayer = new CadAnnotationLayerClass(); } else//如果是点、线、面,则添加要素层 { pFeatureLayer = new FeatureLayerClass(); pFeatureLayer.Name = pFeatureClass.AliasName; pFeatureLayer.FeatureClass = pFeatureClass; this.axmc_Main.Map.AddLayer(pFeatureLayer); this.axmc_Main.ActiveView.**(); } } -
方法二、直接打开CAD数据的点线面注记等要素类,所加载的数据均为一个独立的图层。
CadWorkspaceFactoryClass fac=new CadWorkspaceFactoryClass (); String filePath="E:\\cad"; IFeatureWorkspace space=fac.OpenFromFile(filePath,0) as IFeatureWorkspace ; 下面是打开FeatureClass的代码: //线 IFeatureClass polyline =space.OpenFeatureClass("NewCAD.dwg:Polyline"); IFeatureLayer layer=new CadFeatureLayerClass (); layer.FeatureClass =polyline; //点 IFeatureClass point=space.OpenFeatureClass ("NewCAD.dwg:Point"); layer=new CadFeatureLayerClass (); layer.FeatureClass =point; //面 IFeatureClass polygon=space.OpenFeatureClass ("NewCAD.dwg:Polygon"); ayer=new CadFeatureLayerClass(); layer.FeatureClass =polygon; //注记 IFeatureClass anno=space.OpenFeatureClass ("NewCAD.dwg:Annotation"); layer=new CadAnnotationLayerClass(); layer.FeatureClass =anno; -
方法三、利用绘图空间直接加载CAD数据集,加载后各类型数据作为一个图层显示。
IWorkspaceFactory pWorkspaceFactory = new CadWorkspaceFactoryClass(); IWorkspace pWorkspace = pWorkspaceFactory.OpenFromFile(directoryPath, 0); //--定义一个CAD画图空间,并把上边打开的工作空间赋给它 ICadDrawingWorkspace pCadDrawingWorkspace = pWorkspace as ICadDrawingWorkspace; //--定义一个CAD的画图数据集,并且打开上边指定的工作空间中一幅CAD图 //--然后赋值给CAD数据集 ICadDrawingDataset pCadDrawingDataset = pCadDrawingWorkspace.OpenCadDrawingDataset(fileName); //--通过ICadLayer类,把上边得到的CAD数据局赋值给ICadLayer类对象的 //--CadDrawingDataset属性 ICadLayer pCadLayer = new CadLayerClass(); pCadLayer.CadDrawingDataset = pCadDrawingDataset; //--利用MapControl加载CAD层 this.axmc_Main.Map.AddLayer(pCadLayer); this.axmc_Main.ActiveView.**(); -
方法四、也是遍历CAD点线面,但是不用检查数据类型是否为注记。
IWorkspaceFactory pWorkspaceFactory = new CadWorkspaceFactoryClass(); IFeatureWorkspace pFeatureWorkspace = pWorkspaceFactory.OpenFromFile(directoryPath, 0) as IFeatureWorkspace; IFeatureDataset pFeatureDataset = pFeatureWorkspace.OpenFeatureDataset(fileName); IFeatureClassContainer pFeatureClassContainer = (IFeatureClassContainer)pFeatureDataset; for (int i = 0; i < pFeatureClassContainer.ClassCount - 1; i++) { IFeatureClass pFeatureClass = pFeatureClassContainer.get_Class(i); IFeatureLayer pFeatureLayer = new FeatureLayerClass(); pFeatureLayer.FeatureClass = pFeatureClass; //ICadLayer pCadLayer = new CadLayerClass(); //pCadLayer = pFeatureLayer as ICadLayer; this.axmc_Main.Map.AddLayer(pFeatureLayer); this.axmc_Main.ActiveView.**(); } -
方法五、类似于方法三。
//Add passed file to MapControl ICadDrawingDataset pCadDrawingDataset = GetCadDrawingDataset(directoryPath, fileName); if (pCadDrawingDataset == null) return; ICadLayer pCadLayer = new CadLayerClass(); pCadLayer.CadDrawingDataset = pCadDrawingDataset; pCadLayer.Name = fileName; this.axmc_Main.AddLayer(pCadLayer, 0); /// <summary> /// 获取记录集 /// </summary> /// <param name="directoryPath"></param> /// <param name="fileName"></param> /// <returns></returns> private ICadDrawingDataset GetCadDrawingDataset(string directoryPath, string fileName) { //Create a WorkspaceName object IWorkspaceName pWorkspaceName = new WorkspaceNameClass(); pWorkspaceName.WorkspaceFactoryProgID = "esriDataSourcesFile.CadWorkspaceFactory"; pWorkspaceName.PathName = directoryPath; //Create a CadDrawingName object IDatasetName pDatasetName = new CadDrawingNameClass(); pDatasetName.Name = fileName; pDatasetName.WorkspaceName = pWorkspaceName; //Open the CAD drawing IName pName = (IName)pDatasetName; return (ICadDrawingDataset)pName.Open(); }
-
-
ArcGIS Engine错误码
序号 *错误代码* *错误描述* *错误名称* 0 HRESULT:0x80040201 “Failed to load a resource (string, icon, bitmap, etc).” LOADING_RESOURCE 1. HRESULT:0x80040202 The index passed was not within the valid range. INDEX_OUT_OF_RANGE 2. HRESULT:0x80040203 The operation is not supported by this implementation. NOT_SUPPORTED 3. HRESULT:0x80040204 There is not enough storage space to complete the operation. NOT_ENOUGH_SPACE 4. HRESULT:0x80040205 The user does not have permission to execute the operation. NO_PERMISSION 5. HRESULT:0x80040206 “Signals that an implementation specific error has occurred and that the client should inspect the error object for additional errors. For example, SDE API errors.” IMPLEMENTATION 6. HRESULT:0x80040207 An invalid SQL statement was used. INVALID_SQL 7. HRESULT:0x80040208 A networking error occurred. NETWORK 8. HRESULT:0x80040209 A date conversion error has occurred. DATE_CONVERSION 9. HRESULT:0x8004020A The object has been deleted and is no longer valid. OBJECT_IS_DELETED 10. HRESULT:0x8004020B The workspace is of the wrong type. WORKSPACE_NOT_COMPATIBLE 11. HRESULT:0x8004020C Modifications to the object are not allowed. OBJECT_IS_READONLY 12. HRESULT:0x8004020D Object is busy. OBJECT_IN_USE 13. HRESULT:0x8004020E Maximum number of objects reached. OBJECT_MAX_REACHED 14. HRESULT:0x8004020F Object is currently locked. OBJECT_IS_LOCKED 15. HRESULT:0x80040210 Invalid envelope encountered. INVALID_ENVELOPE 16. HRESULT:0x80040211 File read/write error occurred. FILE_IO 17. HRESULT:0x80040212 A product licensing error occurred. LICENSE_FAILURE 18. HRESULT:0x80040213 An underlying database error occurred. DBMS_ERROR 19. HRESULT:0x80040214 An error occurred trying to coerce data from one type to another. COERCING 20. HRESULT:0x80040215 A general data binding error occurred. BINDING 21. HRESULT:0x80040216 Cannot acquire a schema lock because of an existing lock. SCHEMA_LOCK_CONFLICT 22. HRESULT:0x80040217 Must be the owner to do this operation. MUST_BE_OWNER 23. HRESULT:0x80040218 Object has no schema locks. OBJECT_NOT_LOCKED 24. HRESULT:0x80040219 Connection to Esri OLE DB provider is invalid. ESRI_PROVIDER_CONNECT_INVALID 25. HRESULT:0x8004021A SDE Connection dialog is cancelled. CONNECTION_CANCELLED 26. HRESULT:0x8004021B This release of the Geodatabase is not up to date. INVALID_RELEASE 27. HRESULT:0x8004021C Geodatabase System Tables not found. NO_SYSTEM_TABLES 28. HRESULT:0x8004021D Conflicting connection parameters. CONNECT_PARAMETERS_CONFLICT 29. HRESULT:0x8004021E Geodatabase FieldInfo system table inconsistent. FIELDINFO_SYSTEM_TABLE_INCONSISTENCY 30. HRESULT:0x8004021F The application is not licensed to edit this type of data . NO_EDIT_LICENSE 31. HRESULT:0x80040220 The application is not licensed to create or modify schema for this type of data. NO_SCHEMA_LICENSE 32. HRESULT:0x80040221 The application does not have the required license for this operation. NO_OPERATION_LICENSE 33. HRESULT:0x80040222 The current operation cannot be undone. OPERATION_CANNOT_BE_UNDONE 34. HRESULT:0x80040223 The current operation requires an edit operation. EDIT_OPERATION_REQUIRED 35. HRESULT:0x80040224 The reconcile operation cannot be undone. RECONCILE_CANNOT_BE_UNDONE 36. HRESULT:0x80040225 The object is not initialized. OBJECT_NOT_INITIALIZED 37. HRESULT:0x80040226 The integer requires a 64-bit representation. INTEGER_REQUIRES_64BITS 38. HRESULT:0x80040227 Syntax error. SYNTAX_ERROR 39. HRESULT:0x80040228 License not intialized. LICENSE_NOT_INITIALIZED 40. HRESULT:0x80040229 Maximum table size has been exceeded. TABLE_SIZE_EXCEEDED 41. HRESULT:0x8004022A Cannot access secured data. SECURED_DATA_NO_ACCESS 42. HRESULT:0x8004022B An SQL statement containing comment and/or semicolon was used. INVALID_SQLQUERY 43. HRESULT:0x8004022C The name is invalid. INVALID_NAME 44. HRESULT:0x8004022D Cannot acquire a lock. LOCK_CONFLICT 45. HRESULT:0x8004022E Upgrade will need write access to the geodatabase to successfully complete. UPGRADE_NEEDS_WRITE_ACCESS 46. HRESULT:0x8004022F FIDs in FIDSet must not be negative. NEGATIVE_FID 47. HRESULT:0x80040230 This version of the Geodatabase client is incompatible with the dataset and cannot open it. INCOMPATIBLE_CLIENT_VERSION 48. HRESULT:0x80040231 This functionality is only supported on a Geodatabase release of ArcGIS 10.0 or greater. NEW_SCHEMA_REQUIRED 49. HRESULT:0x80040232 The connection format cannot be made forward compatible. NON_FORWARD_COMPATIBLE_CONNECTION 50. HRESULT:0x80040251 The workspace is not connected. WORKSPACE_NOT_CONNECTED 51. HRESULT:0x80040252 The workspace is already connected. WORKSPACE_ALREADY_CONNECTED 52. HRESULT:0x80040253 The server was not found. SERVER_NOT_FOUND 53. HRESULT:0x80040254 “The server was found, but is not available at this time.” SERVER_NOT_AVAILABLE 54. HRESULT:0x80040255 The server does not allow anymore connections at this time. SERVER_MAX_CONNECTIONS 55. HRESULT:0x80040256 The user and/or password is invalid. USER_INVALID 56. HRESULT:0x80040257 The user does not have access to the workspace. USER_NOACCESS 57. HRESULT:0x80040258 The database was not found. DATABASE_NOT_FOUND 58. HRESULT:0x80040259 “The database was found, but is not available at this time.” DATABASE_NOT_AVAILABLE 59. HRESULT:0x8004025A The workspace already exists. WORKSPACE_ALREADY_EXISTS 60. HRESULT:0x8004025B Unable to instantiate workspace extension component. WORKSPACE_EXTENSION_CREATE_FAILED 61. HRESULT:0x8004025C Unable to initialize workspace extension. WORKSPACE_EXTENSION_INIT_FAILED 62. HRESULT:0x8004025D Failed sending dataset created notification to workspace extension. WORKSPACE_EXTENSION_DATASET_CREATE_FAILED 63. HRESULT:0x8004025E Failed sending dataset renamed notification to workspace extension. WORKSPACE_EXTENSION_DATASET_RENAME_FAILED 64. HRESULT:0x8004025F Failed sending dataset deleted notification to workspace extension. WORKSPACE_EXTENSION_DATASET_DELETE_FAILED 65. HRESULT:0x80040260 Illegal duplicate workspace extension name. WORKSPACE_EXTENSION_DUP_NAME 66. HRESULT:0x80040261 Illegal duplicate workspace extension guid. WORKSPACE_EXTENSION_DUP_GUID 67. HRESULT:0x80040262 Altering workspace extension registration requires Geodatabase DBA priveleges. WORKSPACE_EXTENSION_NO_REG_PRIV 68. HRESULT:0x80040263 Workspace or data source is read only. WORKSPACE_READONLY 69. HRESULT:0x80040264 The dataset is not supported at the workspace level. DATASET_NOT_SUPPORTED_AT_WORKSPACE_LEVEL 70. HRESULT:0x80040265 Workspace does not support Keyset Table. WORKSPACE_NO_KEYSETTABLEMANAGER 71. HRESULT:0x80040266 Keyset table was not returned. WORKSPACE_NO_KEYSETTABLE 72. HRESULT:0x80040267 Returned Keyset id is invalid. WORKSPACE_INVALID_KEYSETID 73. HRESULT:0x80040268 A missing or bad connection property was encountered. WORKSPACEFACTORY_BAD_CONNECTIONPROPERTY 74. HRESULT:0x80040269 Workspace extensions are not supported. WORKSPACE_EXTENSION_NOT_SUPPORTED 75. HRESULT:0x8004026A Failed sending dataset modified notification to workspace extension. WORKSPACE_EXTENSION_DATASET_MODIFY_FAILED 76. HRESULT:0x8004026B Workspace has no spatial type. WORKSPACE_NO_SPATIAL_TYPE 77. HRESULT:0x8004026B The historical marker already exists. HISTORICAL_MARKER_ALREADY_EXISTS 78. HRESULT:0x80040301 The dataset was not found. DATASET_NOT_FOUND 79. HRESULT:0x80040302 The dataset name is invalid. DATASET_INVALID_NAME 80. HRESULT:0x80040303 The dataset already exists. DATASET_ALREADY_EXISTS 81. HRESULT:0x80040304 Cannot rename the dataset with objects already open. DATASET_CANNOT_RENAME 82. HRESULT:0x80040305 Invalid dataset type. DATASET_INVALID_TYPE 83. HRESULT:0x80040306 Cannot delete the dataset. DATASET_CANNOT_DELETE 84. HRESULT:0x80040307 Cannot find the specified feature dataset extension type. DATASET_EXTENSION_TYPE_NOT_FOUND 85. HRESULT:0x80040308 The paste operation on the dataset is not supported in the target release of the Geodatabase. DATASET_PASTE_NOT_SUPPORTED_IN_RELEASE 86. HRESULT:0x80040309 Cannot rename the dataset. DATASET_CANNOT_RENAME_NOT_SUPPORTED 87. HRESULT:0x8004030A Unable to instantiate dataset extension component. DATASET_EXTENSION_CREATE_FAILED 88. HRESULT:0x8004030B Unable to initialize dataset extension. DATASET_EXTENSION_INIT_FAILED 89. HRESULT:0x8004030C Cannot create a low precision dataset in a high precision database. CANNOT_CREATE_LOW_PREC_DATASET_IN_HIGH_PREC_DB 90. HRESULT:0x8004030D Cannot create a high precision dataset in a low precision database. CANNOT_CREATE_HIGH_PREC_DATASET_IN_LOW_PREC_DB 91. HRESULT:0x8004030E The dataset type is not present in the database. DATASET_TYPE_NOT_PRESENT 92. HRESULT:0x8004030F Cannot copy a feature class without all associated controllers. CANNOT_COPY_CLASS_WITHOUT_ALL_CONTROLLERS 93. HRESULT:0x80040310 The dataset type is not supported in this release of the Geodatabase. DATASET_TYPE_NOT_SUPPORTED_IN_RELEASE 94. HRESULT:0x80040311 The dataset has an invalid definition. DATASET_INVALID_DEFINITION 95. HRESULT:0x80040312 The dataset has an invalid id. DATASET_INVALID_ID 96. HRESULT:0x80040313 Cannot rename a dataset that is being edited. CANNOT_RENAME_WHILE_EDITING 97. HRESULT:0x80040314 Cannot update the schema of a dataset that is being edited. CANNOT_MODIFY_SCHEMA_WHILE_EDITING 98. HRESULT:0x80040315 The dataset is unknown to this version of the Geodatabase client and cannot be opened. INCOMPATIBLE_CLIENT_CANNOT_OPEN_DATASET 99. HRESULT:0x80040351 The table was not found. TABLE_NOT_FOUND 100. HRESULT:0x80040352 The table name is invalid. TABLE_INVALID_NAME 101. HRESULT:0x80040353 The table already exists. TABLE_ALREADY_EXISTS 102. HRESULT:0x80040354 The table does not have an ObjectID field. TABLE_NO_OID_FIELD 103. HRESULT:0x80040355 The configuration keyword is invalid. TABLE_INVALID_KEYWORD 104. HRESULT:0x80040356 The table is not multiversioned. TABLE_NOT_VERSIONED 105. HRESULT:0x80040357 Cannot create a table with a duplicate column. TABLE_DUPLICATE_COLUMN 106. HRESULT:0x80040358 A column was specified that does not exist. TABLE_COLUMN_NOT_FOUND 107. HRESULT:0x80040359 Cannot access this table because it is in use. TABLE_IN_USE 108. HRESULT:0x8004035A The maximum record length has been exceeded. TABLE_RECORD_LENGTH_EXCEEDED 109. HRESULT:0x8004035B The table is multiversioned. TABLE_VERSIONED 110. HRESULT:0x8004035C The table is moving edits to base. TABLE_MOVINGEDITSTOBASE 111. HRESULT:0x8004035D The table has archiving enabled. TABLE_ARCHIVING 112. HRESULT:0x8004035E The table does not have archiving enabled. TABLE_NOT_ARCHIVING 113. HRESULT:0x8004035F The table is historical and is read-only. TABLE_READONLY_HISTORICAL 114. HRESULT:0x80040360 The table does not have attachments. TABLE_NO_ATTACHMENTS 115. HRESULT:0x80040361 Table attachments not supported in this release of the Geodatabase. TABLE_ATTACHMENTS_NOT_SUPPORTED 116. HRESULT:0x80040362 This feature class is based upon a table view and thus cannot be analyzed. TABLE_CANNOT_ANALYZE_TABLE_VIEW 117. HRESULT:0x80040363 The table does not have a Global ID field. TABLE_NO_GLOBALID_FIELD 118. HRESULT:0x80040364 Attachments are not supported on attachment tables. ATTACHMENTS_ON_ATTACHMENT_TABLE_NOT_SUPPORTED 119. HRESULT:0x80040365 Table is not empty. TABLE_NOT_EMPTY 120. HRESULT:0x80040366 Attachments only supported on geodatabases. ATTACHMENTS_ONLY_ON_GEODATABASES 121. HRESULT:0x80040401 The feature class was not found. FEATURECLASS_NOT_FOUND 122. HRESULT:0x80040402 The feature class’s extent could not be retrieved or is invalid. FEATURECLASS_BAD_EXTENT 123. HRESULT:0x80040403 Invalid feature class name. FEATURECLASS_INVALID_NAME 124. HRESULT:0x80040404 The feature class already exists. FEATURECLASS_ALREADY_EXISTS 125. HRESULT:0x80040405 The feature class is currently in load-only mode. FEATURECLASS_LOAD_MODE 126. HRESULT:0x80040406 The feature class is in a geometric network and cannot be deleted. FEATURECLASS_NETWORK_CANNOT_DELETE 127. HRESULT:0x80040407 The feature class’ default subtype code cannot be retrieved or is invalid. FEATURECLASS_BAD_DEFAULT_SUBTYPE_CODE 128. HRESULT:0x80040408 The feature class does not have a specified subtype field. FEATURECLASS_NO_SUBTYPE_FIELD 129. HRESULT:0x80040409 The orphan junction featureclass cannot be renamed. FEATURECLASS_NETWORK_CANNOT_RENAME 130. HRESULT:0x8004040A The feature class already has the specified subtype. FEATURECLASS_SUBTYPE_EXISTS 131. HRESULT:0x8004040B The feature dataset is not editable. FEATURECLASS_FD_NOT_EDITABLE 132. HRESULT:0x8004040C The subtype field on a feature class cannot be renamed. FEATURECLASS_SUBTYPE_FIELD_CANNOT_RENAME 133. HRESULT:0x8004040D The specified subtype code is either too large or small to represent. SUBTYPE_CODE_INVALID 134. HRESULT:0x8004040E The specified subtype code does not exist. SUBTYPE_CODE_DOES_NOT_EXIST 135. HRESULT:0x8004040F The value of the subtype code is NULL. SUBTYPE_CODE_IS_NULL 136. HRESULT:0x80040410 The value of the subtype code is not a long or short integer. SUBTYPE_CODE_NOT_INTEGER 137. HRESULT:0x80040411 The feature class does not have a shape column. FEATURECLASS_NO_SHAPE_COLUMN 138. HRESULT:0x80040412 The feature class is in a topology and cannot be deleted. FEATURECLASS_TOPOLOGY_CANNOT_DELETE 139. HRESULT:0x80040413 The subtype code is associated with a topology rule. SUBTYPE_CODE_HAS_ASSOCIATED_TOPOLOGY_RULE 140. HRESULT:0x80040414 The subtype code is in use and cannot be deleted. SUBTYPE_IN_USE_CANNOT_DELETE 141. HRESULT:0x80040415 The subtype code cannot be added. SUBTYPE_CANNOT_ADD 142. HRESULT:0x80040416 The spatial cache’s extent is empty or has not been set. SPATIAL_CACHE_EMPTY_EXTENT 143. HRESULT:0x80040417 The feature class is already a member of the specified controller. FEATURECLASS_MEMBER_OF_CONTROLLER 144. HRESULT:0x80040418 The feature class participates in a geometric network that could not be opened. FEATURECLASS_CANT_OPEN_GEOMETRICNETWORK 145. HRESULT:0x80040419 The feature class participates in a topology that could not be opened. FEATURECLASS_CANT_OPEN_TOPOLOGY 146. HRESULT:0x8004041A The feature class is in a network dataset and cannot be deleted. FEATURECLASS_NETWORK_DATASET_CANNOT_DELETE 147. HRESULT:0x8004041B Insufficient privileges to perform the operation. FEATURECLASS_INSUFFICIENT_PRIVILEGE 148. HRESULT:0x80040451 The planargraph was not found. PLANARGRAPH_NOT_FOUND 149. HRESULT:0x80040501 The geometric network was not found. GEOMETRICNETWORK_NOT_FOUND 150. HRESULT:0x80040502 Error adding a feature to a network. ADD_FEATURE_TO_NETWORK 151. HRESULT:0x80040503 Error creating a logical network. CREATE_LOGICAL_NETWORK 152. HRESULT:0x80040504 The geometric network already exists. GEOMETRICNETWORK_ALREADY_EXISTS 153. HRESULT:0x80040505 Geometry corresponding to edge element may not be zero length. ZERO_LENGTH_EDGE_ELEMENT 154. HRESULT:0x80040506 Cannot rename a geometric network. GEOMETRICNETWORK_CANNOT_RENAME 155. HRESULT:0x80040507 Inconsistent elements in the geometric network. GEOMETRICNETWORK_ELEMENT_INCONSISTENCY 156. HRESULT:0x80040508 Feature classes in a geometric network must have homogeneous support for Zs on geometry. NETWORK_FEATURES_HAVE_HOMOGENEOUS_Z_SUPPORT 157. HRESULT:0x80040509 There is no error table associated with the geometric network. NO_ASSOCIATED_ERROR_TABLE 158. HRESULT:0x8004050A There is no point geometry associated with the feature element. FEATURE_ELEMENT_MISSING_POINT_GEOMETRY 159. HRESULT:0x8004050B Feature classes in a geometric network must have homogeneous support for Ms on geometry. NETWORK_FEATURES_HAVE_HOMOGENEOUS_M_SUPPORT 160. HRESULT:0x8004050C An existing class has the same name as the orphan junction feature class. CLASS_EXISTS_WITH_ORPHAN_JUNCTION_CLASS_NAME 161. HRESULT:0x8004050D The geometric network name is invalid. GEOMETRICNETWORK_INVALID_NAME 162. HRESULT:0x8004050E The specified field cannot be part of a weight association. INVALID_FIELD_FOR_WEIGHT_ASSOCIATION 163. HRESULT:0x8004050F The specified class cannot be part of a weight association. INVALID_CLASS_FOR_WEIGHT_ASSOCIATION 164. HRESULT:0x80040510 The connected feature does not exist. CONNECTED_FEATURE_DOES_NOT_EXIST 165. HRESULT:0x80040511 Error opening a logical network. OPEN_LOGICAL_NETWORK 166. HRESULT:0x80040512 A network feature has a network element whose id is larger than the maximum eid value in the PROPS table. NETWORK_ELEMENT_ID_BEYOND_MAX 167. HRESULT:0x80040513 Edge endpoint is not coincident with junction. EDGE_ENDPOINT_NOT_COINCIDENT 168. HRESULT:0x80040514 Cannot delete populated feature class from a geometric network. CANNOT_DELETE_POPULATED_FEATURE_CLASS 169. HRESULT:0x80040515 Cannot delete the orphan junction class from a geometric network. CANNOT_DELETE_ORPHAN_JUNCTION_CLASS 170. HRESULT:0x80040516 Empty geometric network is not allowed. EMPTY_GEOMETRICNETWORK_IS_NOT_ALLOWED 171. HRESULT:0x80040551 The dataset does not support editing. DATASET_UNEDITABLE 172. HRESULT:0x80040552 Error starting an edit session. START_EDITING 173. HRESULT:0x80040553 Error saving an edit session. SAVE_EDIT_SESSION 174. HRESULT:0x80040554 Error stopping an edit session with save edits. STOP_EDITING_WITH_SAVE 175. HRESULT:0x80040555 Error stopping an edit session with discard edits. STOP_EDITING_WITH_DISCARD 176. HRESULT:0x80040556 This operation is not allowed while editing. NOT_ALLOWED_WHILE_EDITING 177. HRESULT:0x80040557 Error in cleaning coverage during save. COULD_NOT_CLEAN_COVERAGE 178. HRESULT:0x80040558 No valid InteGrateable Feature layers within Feature Dataset. NO_INTEGRATEABLE_LAYERS 179. HRESULT:0x80040559 Invalid Topology. INVALID_TOPOLOGY 180. HRESULT:0x8004055A Operation only allowed while editing. NOT_EDITING 181. HRESULT:0x8004055B Error in encoding INFO item during save. COULD_NOT_ENCODE_INFO_ITEM 182. HRESULT:0x8004055C Node must intersect an arc feature. NODE_NOT_ON_ARC 183. HRESULT:0x8004055D Cannot remove last label from polygon. CANNOT_REMOVE_LAST_LABEL 184. HRESULT:0x8004055E Cannot move label out of polygon. CANNOT_MOVE_LABEL_OUT_OF_POLYGON 185. HRESULT:0x8004055F “Label no longer within valid polygon, deleting.” INVALID_POLYGON_LABEL_DELETED 186. HRESULT:0x80040560 Operations that break coverage topology are not supported. CANNOT_BREAK_TOPOLOGY 187. HRESULT:0x80040561 Coverage labels cannot be created in the universe polygon. CANNOT_CREATE_UNIVERSE_LABEL 188. HRESULT:0x80040562 Coverage labels in the universe polygon cannot be moved. CANNOT_MOVE_UNIVERSE_LABELS 189. HRESULT:0x80040563 Invalid geometry. INVALID_GEOMETRY 190. HRESULT:0x80040564 Corupted Coverage. CORUPTED_COVERAGE 191. HRESULT:0x80040565 Duplicate Field Names within Table. DUPLICATE_FIELD_NAMES 192. HRESULT:0x80040566 Cannot edit features with Z values. CANNOT_EDIT_ZS 193. HRESULT:0x80040567 “No newly added features, after PolygonSplitLines.” NO_POLYGONS_CREATED 194. HRESULT:0x80040568 Unable to save edits because an incorrect edit operation could not be completely rolled back. ABORT_EDITS_FAILED 195. HRESULT:0x80040569 Unable to save edits because of failure in flushing edits to the database. FLUSH_EDITS_FAILED 196. HRESULT:0x8004056A Unable to edit the table or feature class because it has a unique index on a non OID field. CANNOT_EDIT_TABLE_WITH_UNIQ_USER_INDEX 197. HRESULT:0x8004056B Unable to edit the dataset because it contains a table or feature class with a unique index on a non OID field. CANNOT_EDIT_DATASET_WITH_UNIQ_USER_INDEX 198. HRESULT:0x8004056C Cannot rebuild polygons from current topology elements. CANNOT_REBUILD_POLYGONS 199. HRESULT:0x8004056D User transaction not allowed at this time. USERTRANSACTION_NOT_ALLOWED 200. HRESULT:0x8004056E The object cannot be edited using the current edit session mode. NOT_EDITABLE_EDITSESSIONMODE 201. HRESULT:0x8004056F Cannot edit compressed data. CANNOT_EDIT_COMPRESSED_DATASET 202. HRESULT:0x80040570 Cannot update compressed data. CANNOT_UPDATE_COMPRESSED_DATASET 203. HRESULT:0x80040571 Cannot use compressed data for this operation. COMPRESSED_DATASET_NOT_SUPPORTED 204. HRESULT:0x80040572 Invalid operation for edit session mode. INVALID_OPERATION_FOR_EDITSESSIONMODE 205. HRESULT:0x80040573 FileGDB compression is not installed. COMPRESSED_DATASET_NOT_INSTALLED 206. HRESULT:0x80040574 The modified geometry must be a copy. MODIFIED_GEOMETRY_MUST_BE_COPY 207. HRESULT:0x80040575 The modified geometry must be a copy. PENDING_BACKGROUND_PROCESSES 208. HRESULT:0x80040576 Cannot Start/Stop editing while there is pending Feature/Record set input… PENDING_GEOPROCESSING_INPUT 209. HRESULT:0x80040601 This property does not have a SubType. PROPERTY_NO_SUBTYPE 210. HRESULT:0x80040602 The property was not found. PROPERTY_NOT_FOUND 211. HRESULT:0x80040651 A general error when something is wrong with a Field. FIELD_INVALID 212. HRESULT:0x80040652 The name of the Field is unacceptable. FIELD_INVALID_NAME 213. HRESULT:0x80040653 An expected Field was not found or could not be retrieved properly. FIELD_NOT_FOUND 214. HRESULT:0x80040654 The Field already exists. FIELD_ALREADY_EXISTS 215. HRESULT:0x80040655 The Field type is invalid or unsupported for the operation. FIELD_INVALID_TYPE 216. HRESULT:0x80040656 “The Field type does not support the current operation. For example, attempting to set OID field to NULL.” FIELD_UNSUPPORTED_OPERATION 217. HRESULT:0x80040657 The GeometryType property of the Field is invalid or unsupported for this operation. FIELD_INVALID_GEOMETRY_TYPE 218. HRESULT:0x80040658 The Field is not editable. FIELD_NOT_EDITABLE 219. HRESULT:0x80040659 The Field is not nullable. FIELD_NOT_NULLABLE 220. HRESULT:0x8004065A The Field corresponds to a weight and may not be deleted. FIELD_CANNOT_DELETE_WEIGHT_FIELD 221. HRESULT:0x8004065B The Field is required and may not be deleted. FIELD_CANNOT_DELETE_REQUIRED_FIELD 222. HRESULT:0x8004065C The Field is a subtype field and may not be deleted. FIELD_CANNOT_DELETE_SUBTYPE_FIELD 223. HRESULT:0x8004065D The Field is the last remaining field and may not be deleted. FIELD_CANNOT_DELETE_LAST_FIELD 224. HRESULT:0x8004065E The Field is the keyword the destination DBMS. FIELD_IS_KEYWORD 225. HRESULT:0x8004065F The field cannot be deleted because it is being used as a relationship key. FIELD_CANNOT_DELETE_RELKEY_FIELD 226. HRESULT:0x80040660 The shape field is missing the geometry def. FIELD_MISSING_GEOMETRY_DEF 227. HRESULT:0x80040661 The field is used as a relationship key. FIELD_IS_RELKEY_FIELD 228. HRESULT:0x80040662 The field is used by Editor Tracking. FIELD_USED_BY_EDITOR_TRACKING 229. HRESULT:0x80040663 The field is used to define subtypes. FIELD_IS_SUBTYPE_FIELD 230. HRESULT:0x80040664 The field is used to define a network ancillary role. FIELD_IS_NETWORK_ANCILLARY_FIELD 231. HRESULT:0x80040665 The field corresponds to a weight. FIELD_IS_WEIGHT_FIELD 232. HRESULT:0x80040666 The field is an enabled field associated with a network element. FIELD_IS_ENABLED_FIELD 233. HRESULT:0x80040667 The field is required. FIELD_IS_REQUIRED_FIELD 234. HRESULT:0x80040701 A general error when something is wrong with the Fields collection. FIELDS_INVALID 235. HRESULT:0x80040702 An expected Fields collection was not found or could not be retrieved properly. FIELDS_NOT_FOUND 236. HRESULT:0x80040703 The Fields collection did not contain an expected geometry field. FIELDS_NO_GEOMETRY 237. HRESULT:0x80040704 The Fields collection did not contain an expected OID field. FIELDS_NO_OID 238. HRESULT:0x80040705 The Fields collection contained multiple OID fields. FIELDS_MULTIPLE_OIDS 239. HRESULT:0x80040706 The Fields collection contained multiple geometry fields. FIELDS_MULTIPLE_GEOMETRIES 240. HRESULT:0x80040707 Another field within the class already has this model name. FIELDS_MODEL_NAME_ALREADY_EXISTS 241. HRESULT:0x80040708 The Fields collection contained multiple raster fields. FIELDS_MULTIPLE_RASTERS 242. HRESULT:0x80040709 The Fields collection contained multiple GlobalID fields. FIELDS_MULTIPLE_GLOBALIDS 243. HRESULT:0x8004070A The Fields collection is empty. FIELDS_EMPTY 244. HRESULT:0x80040751 The operation requires a different index type. INDEX_WRONG_TYPE 245. HRESULT:0x80040752 The index already exists. INDEX_ALREADY_EXISTS 246. HRESULT:0x80040753 The index was not found. INDEX_NOT_FOUND 247. HRESULT:0x80040754 This type of index is not allowed. INDEX_NOT_ALLOWED 248. HRESULT:0x80040801 Unable to find a required metadata table. METADATA_TABLE_NOT_FOUND 249. HRESULT:0x80040802 A required Field in a metadata table could not be located. METADATA_FIELD_NOT_FOUND 250. HRESULT:0x80040803 An error occurred adding an entry to the ESRI_DATASETS table. METADATA_ADDING_DATASET 251. HRESULT:0x80040804 An error occurred while adding an entry to the FEATUREDATASET_CLASSES or the FEATURECLASSES table. METADATA_ADDING_FEATURECLASS 252. HRESULT:0x80040805 The CLSID read from the FEATURECLASSES table was bad (unable to convert using ::CLSIDFromString). METADATA_BAD_CLSID 253. HRESULT:0x80040851 The operation does not support this spatial relationship. SPATIALREL_NOT_SUPPORTED 254. HRESULT:0x80040852 The spatial relationship is unknown or not defined. SPATIALREL_UNKNOWN 255. HRESULT:0x80040853 The operation does not support this feature type. FEATURETYPE_NOT_SUPPORTED 256. HRESULT:0x80040854 The feature type is unknown or not defined. FEATURETYPE_UNKNOWN 257. HRESULT:0x80040855 The operation does not support this dataset type. DATASETTYPE_NOT_SUPPORTED 258. HRESULT:0x80040856 The dataset type is unknown or not defined. DATASETTYPE_UNKNOWN 259. HRESULT:0x80040857 The operation does not support this draw style. DRAWSTYLE_NOT_SUPPORTED 260. HRESULT:0x80040858 The draw style is unknown or not defined. DRAWSTYLE_UNKNOWN 261. HRESULT:0x80040859 The operation does not support this draw phase. DRAWPHASE_NOT_SUPPORTED 262. HRESULT:0x8004085A The draw phase is unknown or not defined. DRAWPHASE_UNKNOWN 263. HRESULT:0x80040901 No support for this geometry type. GEOMETRY_TYPE_NOT_SUPPORTED 264. HRESULT:0x80040902 Multipart edge feature geometries not supported. MULTIPART_EDGE_FEATURE_NOT_SUPPORTED 265. HRESULT:0x80040903 Geometry has no M values. GEOMETRY_HAS_NO_M_VALUES 266. HRESULT:0x80040904 Geometry has no Z values. GEOMETRY_HAS_NO_Z_VALUES 267. HRESULT:0x80040905 Geometry has null Z values. GEOMETRY_HAS_NULL_Z_VALUES 268. HRESULT:0x80040906 Geometry is not simple. GEOMETRY_NOT_SIMPLE 269. HRESULT:0x80040907 Geometry cannot have Z values. GEOMETRY_CANNOT_HAVE_Z_VALUES 270. HRESULT:0x80040908 Spatial reference (projection) related error. GEOMETRY_SPATIAL_REFERENCE 271. HRESULT:0x80040909 Geometry is missing required spatial reference. GEOMETRY_MISSING_SPATIAL_REFERENCE 272. HRESULT:0x8004090A Polylines with vertical segments cannot be stored in pre-10.0 geodatabase feature classes. CANT_STORE_VERTICAL_SEGMENT 273. HRESULT:0x80040951 The row object does not support the IRowSetup interface. ROW_NO_SETUPINTERFACE 274. HRESULT:0x80040952 A requested row object could not be located. ROW_NOT_FOUND 275. HRESULT:0x80040953 The row does not have an OID. ROW_NO_OID 276. HRESULT:0x80040954 Cannot determine the row’s ObjectClass. ROW_NO_OBJCLASS 277. HRESULT:0x80040955 The row contains a bad value. ROW_BAD_VALUE 278. HRESULT:0x80040956 A row with this OID already exists. ROW_ALREADY_EXISTS 279. HRESULT:0x80040957 Cannot compare incompatible types. COMPARE_TYPE_MISMATCH 280. HRESULT:0x80040958 Cannot call Store on a recycled row while editing. CANNOT_STORE_RECYCLED_ROW_IN_EDIT_SESSION 281. HRESULT:0x80041001 The feature object does not have annotation. FEATURE_NO_ANNO 282. HRESULT:0x80041002 The feature object does not have a valid shape. FEATURE_BAD_SHAPE 283. HRESULT:0x80041003 The feature falls outside the defined spatial reference. FEATURE_OUTSIDE_SPATIALREF 284. HRESULT:0x80041004 The feature is mutually exclusive. Cannot update shape. FEATURE_SHAPE_UPDATE_BLOCKED 285. HRESULT:0x80041005 Failed to update feature’s area/length field in response to shape update. FEATURE_AREA_LENGTH_UPDATE_FAILED 286. HRESULT:0x80041006 On Delete Message returned failure. ON_DELETE_MESSAGE_FAILED 287. HRESULT:0x80041007 Failed to delete part objects for composite object. DELETE_PART_OBJECTS_FAILED 288. HRESULT:0x80041008 Failed to delete relationships for object. DELETE_RELATIONSHIPS_FAILED 289. HRESULT:0x80041009 On Changed message returned failure. ON_CHANGED_MESSAGE_FAILED 290. HRESULT:0x8004100A Failed to move related features. MOVE_RELATED_FEATURES_FAILED 291. HRESULT:0x8004100B Failed to rotate related features. ROTATE_RELATED_FEATURES_FAILED 292. HRESULT:0x8004100C The feature has been deleted. FEATURE_DELETED 293. HRESULT:0x8004100D The value type is incompatible. FEATURE_VALUE_TYPE_MISMATCH 294. HRESULT:0x8004100E The required custom complex junction was not implemented. CUSTOM_COMPLEX_JUNCTION_NOT_IMPLEMENTED 295. HRESULT:0x8004100F A requested feature object could not be located. FEATURE_NOT_FOUND 296. HRESULT:0x80041010 The split operation is not supported on the selected feature’s geometry type. SPLIT_NOT_SUPPORTED_ON_GEOMETRY_TYPE 297. HRESULT:0x80041011 Splitting a polygon requires a polyline splitter. SPLITTING_POLYGONS_REQUIRES_POLYLINE 298. HRESULT:0x80041012 Splitting a polyline requires a point splitter. SPLITTING_POLYLINES_REQUIRES_POINT 299. HRESULT:0x80041013 Split point results in a zero length polyline. SPLIT_POINT_YIELDS_ZERO_LENGTH_POLYLINE 300. HRESULT:0x80041014 Cutting polyline results in zero area polygon. CUTTER_YIELDS_ZERO_AREA_POLYGON 301. HRESULT:0x80041015 The feature does not have any associated geometry. FEATURE_NO_GEOMETRY 302. HRESULT:0x80041016 A required interface on the feature was not found. REQUIRED_INTERFACE_NOT_FOUND 303. HRESULT:0x80041017 A required connection point on a complex junction was not found. REQUIRED_CONNECTION_POINT_NOT_FOUND 304. HRESULT:0x80041018 The geometry for a complex junction connection point is invalid. INVALID_CONNECTION_POINT_GEOMETRY 305. HRESULT:0x80041019 The feature has empty geometry. FEATURE_EMPTY_GEOMETRY 306. HRESULT:0x80041051 “This type of cursor does not support this operation. For example, calling UpdateRow on a read-only cursor.” CURSOR_WRONG_TYPE 307. HRESULT:0x80041052 The cursor is in an invalid state. CURSOR_INVALID 308. HRESULT:0x80041053 The cursor has completed and is at the end. CURSOR_FINISHED 309. HRESULT:0x80041054 The cursor cannot aquire a lock against the data. CURSOR_LOCKED 310. HRESULT:0x80041055 The cursor has been invalidated because the edit operation has stopped. CURSOR_INVALIDATED 311. HRESULT:0x80041101 The ID of the version is bad. VERSION_BAD_NAME 312. HRESULT:0x80041102 “The current version does not support editing (base, consistent, or closed).” VERSION_UNEDITABLE 313. HRESULT:0x80041103 This operation is not allowed using conflicting versions. VERSION_HAS_CONFLICTS 314. HRESULT:0x80041104 The version already exists. VERSION_ALREADY_EXISTS 315. HRESULT:0x80041105 The version has been redefined to reference a new database state. VERSION_REDEFINED 316. HRESULT:0x80041106 The version could not be located. VERSION_NOT_FOUND 317. HRESULT:0x80041107 The version’s internal state ID is invalid. VERSION_INVALID_STATE 318. HRESULT:0x80041108 Operation only allowed by the owner of the version. VERSION_NOT_OWNER 319. HRESULT:0x80041109 Operation only allowed on versions without children. VERSION_HAS_CHILDREN 320. HRESULT:0x8004110A The version has not been reconciled. VERSION_NOT_RECONCILED 321. HRESULT:0x8004110B Operation not allowed because the version is protected. VERSION_IS_PROTECTED 322. HRESULT:0x8004110C Operation not allowed because the version is in use. VERSION_IN_USE 323. HRESULT:0x8004110D Operation not allowed while the version is being edited. VERSION_BEING_EDITED 324. HRESULT:0x8004110E Operation not allowed while the version is being reconciled. VERSION_BEING_RECONCILED 325. HRESULT:0x8004110F Unable to reconcile: the target version is currently being reconciled against. RECONCILE_VERSION_NOT_AVAILABLE 326. HRESULT:0x80041110 Post not allowed after undoing a reconcile. VERSION_RECONCILE_LOST 327. HRESULT:0x80041111 Unable to reconcile : Failed filtering conflicts. FAILED_FILTERING_CONFLICTS 328. HRESULT:0x80041112 Unable to reconcile : Reconcile version is not an ancestor. RECONCILE_VERSION_NOT_ANCESTOR 329. HRESULT:0x80041113 Version cannot be reconciled. VERSION_CANNOT_BE_RECONCILED 330. HRESULT:0x80041114 Version cannot be reconciled. VERSION_NOT_HISTORICAL 331. HRESULT:0x80041115 The version can only be reconciled with its parent. VERSION_REQUIRES_PARENT_RECONCILE 332. HRESULT:0x80041151 DataSource could not be locked. DATASOURCE_LOCK_FAILED 333. HRESULT:0x80041152 DataSource lock could not be released. DATASOURCE_RELEASELOCK_FAILED 334. HRESULT:0x80041153 DataSource is being used in another application. DATASOURCE_INUSE_ELSEWHERE 335. HRESULT:0x80041201 The xy units are invalid. INVALID_UNITS 336. HRESULT:0x80041202 The spatial index grid size is invalid. INVALID_GRID_SIZE 337. HRESULT:0x80041203 The spatial references do not match. SPATIALREF_MISMATCH 338. HRESULT:0x80041204 Invalid spatial reference. SPATIALREF_INVALID 339. HRESULT:0x80041205 The M domain is invalid. INVALID_M_DOMAIN 340. HRESULT:0x80041206 The spatial reference cannot be altered. CANNOT_ALTER_SPATIALREF 341. HRESULT:0x80041207 No spatial reference exists. NO_SPATIALREF 342. HRESULT:0x80041208 High precision spatial reference not supported. HIGH_PRECISION_SR_NOT_SUPPORTED 343. HRESULT:0x80041209 Low precision spatial reference not supported. LOW_PRECISION_SR_NOT_SUPPORTED 344. HRESULT:0x8004120A The precision cannot be altered. CANNOT_ALTER_PRECISION 345. HRESULT:0x8004120B The spatial reference precision models do not match. SPATIALREF_PRECISION_MISMATCH 346. HRESULT:0x8004120C The resolution value must be larger than zero. NEGATIVE_RESOLUTION 347. HRESULT:0x8004120D The resolution value does not match permissible values. RESOLUTION_DOES_NOT_MATCH_PERMISSIBLE_VALUE 348. HRESULT:0x8004120E The XY domain is invalid. INVALID_XY_DOMAIN 349. HRESULT:0x8004120F Every grid size must be at least three times larger than the preceding grid size. GRID_SIZE_TOO_SMALL 350. HRESULT:0x80041210 The Z domain is invalid. INVALID_Z_DOMAIN 351. HRESULT:0x80041211 The spatial reference z values do not match. SPATIALREF_Z_MISMATCH 352. HRESULT:0x80041251 The spatial filter is invalid. SPATIALFILTER_INVALID 353. HRESULT:0x80041252 The geometry property of the spatial filter is invalid. SPATIALFILTER_INVALID_GEOMETRY 354. HRESULT:0x80041253 The spatial relation property of the spatial filter is invalid. SPATIALFILTER_INVALID_SPATIAL_RELATION 355. HRESULT:0x80041301 Selection sets do not match. SELECTION_MISMATCH 356. HRESULT:0x80041302 Selection type is invalid. SELECTION_INVALID_TYPE 357. HRESULT:0x80041303 No selectable layers. SELECTION_NO_SELECTABLE_LAYERS 358. HRESULT:0x80041351 Unable to instantiate object class instance COM component. OBJECTCLASS_COULD_NOT_CREATE_CLASS_INSTANCE 359. HRESULT:0x80041352 Unable to instantiate object class extension COM component. OBJECTCLASS_COULD_NOT_CREATE_CLASS_EXTENSION 360. HRESULT:0x80041353 Unable to initialize object class extension COM component. OBJECTCLASS_COULD_NOT_INITIALIZE_CLASS_EXTENSION 361. HRESULT:0x80041354 Objects in this object class cannot be updated outside of an edit session. OBJECTCLASS_REQUIRES_AN_EDIT_SESSION 362. HRESULT:0x80041355 An object class with this model name already exists. OBJECTCLASS_MODEL_NAME_ALREADY_EXISTS 363. HRESULT:0x80041356 The feature dataset is not editable. CLASS_FD_NOT_EDITABLE 364. HRESULT:0x80041357 The class extension property set could not be loaded. COULD_NOT_LOAD_CLASS_EXTENSION_PROPERTIES 365. HRESULT:0x80041358 The object class is not registered in the Geodatabase. OBJECTCLASS_NOT_REGISTERED 366. HRESULT:0x80041359 The class participates in a controller dataset. OBJECTCLASS_IN_CONTROLLER_DATASET 367. HRESULT:0x80041501 SDE Error. SE_FAILURE 368. HRESULT:0x80041502 SDE Error. SE_INVALID_LAYERINFO_OBJECT 369. HRESULT:0x80041503 SDE Error. SE_NO_ANNOTATION 370. HRESULT:0x80041504 SDE Error. SE_FINISHED 371. HRESULT:0x80041505 SDE Error. SE_SDE_NOT_STARTED 372. HRESULT:0x80041506 SDE Error. SE_UNCHANGED 373. HRESULT:0x80041508 SDE Error. SE_CONNECTIONS_EXCEEDED 374. HRESULT:0x80041509 SDE Error. SE_LOGIN_NOT_ALLOWED 375. HRESULT:0x8004150A SDE Error. SE_INVALID_USER 376. HRESULT:0x8004150B SDE Error. SE_NET_FAILURE 377. HRESULT:0x8004150C SDE Error. SE_NET_TIMEOUT 378. HRESULT:0x8004150D SDE Error. SE_OUT_OF_SVMEM 379. HRESULT:0x8004150E SDE Error. SE_OUT_OF_CLMEM 380. HRESULT:0x8004150F SDE Error. SE_OUT_OF_CONTEXT 381. HRESULT:0x80041510 SDE Error. SE_NO_ACCESS 382. HRESULT:0x80041511 SDE Error. SE_TOO_MANY_LAYERS 383. HRESULT:0x80041512 SDE Error. SE_NO_LAYER_SPECIFIED 384. HRESULT:0x80041513 SDE Error. SE_LAYER_LOCKED 385. HRESULT:0x80041514 SDE Error. SE_LAYER_EXISTS 386. HRESULT:0x80041515 SDE Error. SE_LAYER_NOEXIST 387. HRESULT:0x80041516 SDE Error. SE_LAYER_INUSE 388. HRESULT:0x80041518 SDE Error. SE_ROW_NOEXIST 389. HRESULT:0x8004151A SDE Error. SE_ROW_EXISTS 390. HRESULT:0x8004151B SDE Error. SE_LAYER_MISMATCH 391. HRESULT:0x8004151C SDE Error. SE_NO_PERMISSIONS 392. HRESULT:0x8004151D SDE Error. SE_INVALID_NOT_NULL 393. HRESULT:0x8004151E SDE Error. SE_INVALID_SHAPE 394. HRESULT:0x8004151F SDE Error. SE_INVALID_LAYER_NUMBER 395. HRESULT:0x80041520 SDE Error. SE_INVALID_ENTITY_TYPE 396. HRESULT:0x80041521 SDE Error. SE_INVALID_SEARCH_METHOD 397. HRESULT:0x80041522 SDE Error. SE_INVALID_ETYPE_MASK 398. HRESULT:0x80041523 SDE Error. SE_BIND_CONFLICT 399. HRESULT:0x80041524 SDE Error. SE_INVALID_GRIDSIZE 400. HRESULT:0x80041525 SDE Error. SE_INVALID_LOCK_MODE 401. HRESULT:0x80041526 SDE Error. SE_ETYPE_NOT_ALLOWED 402. HRESULT:0x80041528 SDE Error. SE_INVALID_NUM_OF_PTS 403. HRESULT:0x80041529 SDE Error. SE_TABLE_NOEXIST 404. HRESULT:0x8004152A SDE Error. SE_ATTR_NOEXIST 405. HRESULT:0x8004152B SDE Error. SE_LICENSE_FAILURE 406. HRESULT:0x8004152C SDE Error. SE_OUT_OF_LICENSES 407. HRESULT:0x8004152D SDE Error. SE_INVALID_COLUMN_VALUE 408. HRESULT:0x8004152F SDE Error. SE_INVALID_SQL 409. HRESULT:0x80041530 SDE Error. SE_LOG_NOEXIST 410. HRESULT:0x80041531 SDE Error. SE_LOG_NOACCESS 411. HRESULT:0x80041532 SDE Error. SE_LOG_NOTOPEN 412. HRESULT:0x80041533 SDE Error. SE_LOG_IO_ERROR 413. HRESULT:0x80041534 SDE Error. SE_NO_SHAPES 414. HRESULT:0x80041535 SDE Error. SE_NO_LOCKS 415. HRESULT:0x80041536 SDE Error. SE_LOCK_CONFLICT 416. HRESULT:0x80041537 SDE Error. SE_OUT_OF_LOCKS 417. HRESULT:0x80041538 SDE Error. SE_DB_IO_ERROR 418. HRESULT:0x80041539 SDE Error. SE_STREAM_IN_PROGRESS 419. HRESULT:0x8004153A SDE Error. SE_INVALID_COLUMN_TYPE 420. HRESULT:0x8004153B SDE Error. SE_TOPO_ERROR 421. HRESULT:0x8004153C SDE Error. SE_ATTR_CONV_ERROR 422. HRESULT:0x8004153D SDE Error. SE_INVALID_COLUMN_DEF 423. HRESULT:0x8004153E SDE Error. SE_INVALID_SHAPE_BUF_SIZE 424. HRESULT:0x8004153F SDE Error. SE_INVALID_ENVELOPE 425. HRESULT:0x80041540 SDE Error. SE_TEMP_IO_ERROR 426. HRESULT:0x80041541 SDE Error. SE_GSIZE_TOO_SMALL 427. HRESULT:0x80041542 SDE Error. SE_LICENSE_EXPIRED 428. HRESULT:0x80041543 SDE Error. SE_TABLE_EXISTS 429. HRESULT:0x80041544 SDE Error. SE_INDEX_EXISTS 430. HRESULT:0x80041545 SDE Error. SE_INDEX_NOEXIST 431. HRESULT:0x80041546 SDE Error. SE_INVALID_POINTER 432. HRESULT:0x80041547 SDE Error. SE_INVALID_PARAM_VALUE 433. HRESULT:0x80041548 SDE Error. SE_ALL_SLIVERS 434. HRESULT:0x80041549 SDE Error. SE_TRANS_IN_PROGRESS 435. HRESULT:0x8004154A SDE Error. SE_IOMGR_NO_DBMS_CONNECT 436. HRESULT:0x8004154B SDE Error. SE_DUPLICATE_ARC 437. HRESULT:0x8004154C SDE Error. SE_INVALID_ANNO_OBJECT 438. HRESULT:0x8004154D SDE Error. SE_PT_NO_EXIST 439. HRESULT:0x8004154E SDE Error. SE_PTS_NOT_ADJACENT 440. HRESULT:0x8004154F SDE Error. SE_INVALID_MID_PT 441. HRESULT:0x80041550 SDE Error. SE_INVALID_END_PT 442. HRESULT:0x80041551 SDE Error. SE_INVALID_RADIUS 443. HRESULT:0x80041552 SDE Error. SE_LOAD_ONLY_LAYER 444. HRESULT:0x80041553 SDE Error. SE_LAYERS_NOT_FOUND 445. HRESULT:0x80041554 SDE Error. SE_FILE_IO_ERROR 446. HRESULT:0x80041555 SDE Error. SE_BLOB_SIZE_TOO_LARGE 447. HRESULT:0x80041556 SDE Error. SE_CORRIDOR_OUT_OF_BOUNDS 448. HRESULT:0x80041557 SDE Error. SE_SHAPE_INTEGRITY_ERROR 449. HRESULT:0x80041558 SDE Error. SE_NOT_IMPLEMENTED_YET 450. HRESULT:0x80041559 SDE Error. SE_CAD_EXISTS 451. HRESULT:0x8004155A SDE Error. SE_INVALID_TRANSID 452. HRESULT:0x8004155B SDE Error. SE_INVALID_LAYER_NAME 453. HRESULT:0x8004155C SDE Error. SE_INVALID_LAYER_KEYWORD 454. HRESULT:0x8004155D SDE Error. SE_INVALID_RELEASE 455. HRESULT:0x8004155E SDE Error. SE_VERSION_TBL_EXISTS 456. HRESULT:0x8004155F SDE Error. SE_COLUMN_NOT_BOUND 457. HRESULT:0x80041560 SDE Error. SE_INVALID_INDICATOR_VALUE 458. HRESULT:0x80041561 SDE Error. SE_INVALID_CONNECTION 459. HRESULT:0x80041562 SDE Error. SE_INVALID_DBA_PASSWORD 460. HRESULT:0x80041563 SDE Error. SE_PATH_NOT_FOUND 461. HRESULT:0x80041564 SDE Error. SE_SDEHOME_NOT_SET 462. HRESULT:0x80041565 SDE Error. SE_NOT_TABLE_OWNER 463. HRESULT:0x80041566 SDE Error. SE_PROCESS_NOT_FOUND 464. HRESULT:0x80041567 SDE Error. SE_INVALID_DBMS_LOGIN 465. HRESULT:0x80041568 SDE Error. SE_PASSWORD_TIMEOUT 466. HRESULT:0x80041569 SDE Error. SE_INVALID_SERVER 467. HRESULT:0x8004156A SDE Error. SE_IOMGR_NOT_AVAILABLE 468. HRESULT:0x8004156B SDE Error. SE_SERVICE_NOT_FOUND 469. HRESULT:0x8004156C SDE Error. SE_INVALID_STATS_TYPE 470. HRESULT:0x8004156D SDE Error. SE_INVALID_DISTINCT_TYPE 471. HRESULT:0x8004156E SDE Error. SE_INVALID_GRANT_REVOKE 472. HRESULT:0x8004156F SDE Error. SE_INVALID_SDEHOME 473. HRESULT:0x80041570 SDE Error. SE_INVALID_STREAM 474. HRESULT:0x80041571 SDE Error. SE_TOO_MANY_STREAMS 475. HRESULT:0x80041572 SDE Error. SE_OUT_OF_MUTEXES 476. HRESULT:0x80041573 SDE Error. SE_CONNECTION_LOCKED 477. HRESULT:0x80041574 SDE Error. SE_CONNECTION_IN_USE 478. HRESULT:0x80041575 SDE Error. SE_NOT_A_SELECT_STATEMENT 479. HRESULT:0x80041576 SDE Error. SE_FUNCTION_SEQUENCE_ERROR 480. HRESULT:0x80041577 SDE Error. SE_WRONG_COLUMN_TYPE 481. HRESULT:0x80041578 SDE Error. SE_PTABLE_LOCKED 482. HRESULT:0x80041579 SDE Error. SE_PTABLE_IN_USE 483. HRESULT:0x8004157A SDE Error. SE_STABLE_LOCKED 484. HRESULT:0x8004157B SDE Error. SE_STABLE_IN_USE 485. HRESULT:0x8004157C SDE Error. SE_INVALID_FILTER_TYPE 486. HRESULT:0x8004157D SDE Error. SE_NO_CAD 487. HRESULT:0x8004157E SDE Error. SE_INSTANCE_NOT_AVAILABLE 488. HRESULT:0x8004157F SDE Error. SE_INSTANCE_TOO_EARLY 489. HRESULT:0x80041580 SDE Error. SE_INVALID_SYSTEM_UNITS 490. HRESULT:0x80041581 SDE Error. SE_INVALID_UNITS 491. HRESULT:0x80041582 SDE Error. SE_INVALID_CAD_OBJECT 492. HRESULT:0x80041583 SDE Error. SE_VERSION_NOEXIST 493. HRESULT:0x80041584 SDE Error. SE_INVALID_SPATIAL_CONSTRAINT 494. HRESULT:0x80041585 SDE Error. SE_INVALID_STREAM_TYPE 495. HRESULT:0x80041586 SDE Error. SE_INVALID_SPATIAL_COLUMN 496. HRESULT:0x80041587 SDE Error. SE_NO_SPATIAL_MASKS 497. HRESULT:0x80041588 SDE Error. SE_IOMGR_NOT_FOUND 498. HRESULT:0x80041589 SDE Error. SE_SYSTEM_IS_CLIENT_ONLY 499. HRESULT:0x8004158A SDE Error. SE_MULTIPLE_SPATIAL_COLS 500. HRESULT:0x8004158B SDE Error. SE_INVALID_SHAPE_OBJECT 501. HRESULT:0x8004158C SDE Error. SE_INVALID_PARTNUM 502. HRESULT:0x8004158D SDE Error. SE_INCOMPATIBLE_SHAPES 503. HRESULT:0x8004158E SDE Error. SE_INVALID_PART_OFFSET 504. HRESULT:0x8004158F SDE Error. SE_INCOMPATIBLE_COORDREFS 505. HRESULT:0x80041590 SDE Error. SE_COORD_OUT_OF_BOUNDS 506. HRESULT:0x80041591 SDE Error. SE_LAYER_CACHE_FULL 507. HRESULT:0x80041592 SDE Error. SE_INVALID_COORDREF_OBJECT 508. HRESULT:0x80041593 SDE Error. SE_INVALID_COORDSYS_ID 509. HRESULT:0x80041594 SDE Error. SE_INVALID_COORDSYS_DESC 510. HRESULT:0x80041595 SDE Error. SE_INVALID_ROW_ID_LAYER 511. HRESULT:0x80041596 SDE Error. SE_PROJECTION_ERROR 512. HRESULT:0x80041597 SDE Error. SE_ARRAY_BYTES_EXCEEDED 513. HRESULT:0x80041598 SDE Error. SE_POLY_SHELLS_OVERLAP 514. HRESULT:0x80041599 SDE Error. SE_TOO_FEW_POINTS 515. HRESULT:0x8004159A SDE Error. SE_INVALID_PART_SEPARATOR 516. HRESULT:0x8004159B SDE Error. SE_INVALID_POLYGON_CLOSURE 517. HRESULT:0x8004159C SDE Error. SE_INVALID_OUTER_SHELL 518. HRESULT:0x8004159D SDE Error. SE_ZERO_AREA_POLYGON 519. HRESULT:0x8004159E SDE Error. SE_POLYGON_HAS_VERTICAL_LINE 520. HRESULT:0x8004159F SDE Error. SE_OUTER_SHELLS_OVERLAP 521. HRESULT:0x800415A0 SDE Error. SE_SELF_INTERSECTING 522. HRESULT:0x800415A1 SDE Error. SE_INVALID_EXPORT_FILE 523. HRESULT:0x800415A2 SDE Error. SE_READ_ONLY_SHAPE 524. HRESULT:0x800415A3 SDE Error. SE_INVALID_DATA_SOURCE 525. HRESULT:0x800415A4 SDE Error. SE_INVALID_STREAM_SPEC 526. HRESULT:0x800415A5 SDE Error. SE_INVALID_ALTER_OPERATION 527. HRESULT:0x800415A6 SDE Error. SE_INVALID_SPATIAL_COL_NAME 528. HRESULT:0x800415A7 SDE Error. SE_INVALID_DATABASE 529. HRESULT:0x800415A8 SDE Error. SE_SPATIAL_SQL_NOT_INSTALLED 530. HRESULT:0x800415A9 SDE Error. SE_NORM_DIM_INFO_NOT_FOUND 531. HRESULT:0x800415AA SDE Error. SE_NORM_DIM_TAB_VALUE_NOT_FOUND 532. HRESULT:0x800415AB SDE Error. SE_UNSUPPORTED_NORMALIZED_OPERATION 533. HRESULT:0x800415AC SDE Error. SE_INVALID_REGISTERED_LAYER_OPTION 534. HRESULT:0x800415AD SDE Error. SE_READ_ONLY 535. HRESULT:0x800415AE SDE Error. SE_NO_SDE_ROWID_COLUMN 536. HRESULT:0x800415AF SDE Error. SE_READ_ONLY_COLUMN 537. HRESULT:0x800415B0 SDE Error. SE_INVALID_VERSION_NAME 538. HRESULT:0x800415B1 SDE Error. SE_STATE_NOEXIST 539. HRESULT:0x800415B2 SDE Error. SE_INVALID_STATEINFO_OBJECT 540. HRESULT:0x800415B3 SDE Error. SE_VERSION_HAS_MOVED 541. HRESULT:0x800415B4 SDE Error. SE_STATE_HAS_CHILDREN 542. HRESULT:0x800415B5 SDE Error. SE_PARENT_NOT_CLOSED 543. HRESULT:0x800415B6 SDE Error. SE_VERSION_EXISTS 544. HRESULT:0x800415B7 SDE Error. SE_TABLE_NOT_MULTIVERSION 545. HRESULT:0x800415B8 SDE Error. SE_STATE_USED_BY_VERSION 546. HRESULT:0x800415B9 SDE Error. SE_INVALID_VERSIONINFO_OBJECT 547. HRESULT:0x800415BA SDE Error. SE_INVALID_STATE_ID 548. HRESULT:0x800415BB SDE Error. SE_SDETRACELOC_NOT_SET 549. HRESULT:0x800415BC SDE Error. SE_ERROR_LOADING_SSA 550. HRESULT:0x800415BD SDE Error. SE_TOO_MANY_STATES 551. HRESULT:0x800415BE SDE Error. SE_STATES_ARE_SAME 552. HRESULT:0x800415BF SDE Error. SE_NO_ROWID_COLUMN 553. HRESULT:0x800415C0 SDE Error. SE_NO_STATE_SET 554. HRESULT:0x800415C1 SDE Error. SE_SSA_FUNCTION_ERROR 555. HRESULT:0x800415C2 SDE Error. SE_INVALID_REGINFO_OBJECT 556. HRESULT:0x800415C3 SDE Error. SE_NO_COMMON_LINEAGE 557. HRESULT:0x800415C4 SDE Error. SE_STATE_INUSE 558. HRESULT:0x800415C5 SDE Error. SE_STATE_TREE_INUSE 559. HRESULT:0x800415C6 SDE Error. SE_INVALID_RASTER_COLUMN 560. HRESULT:0x800415C7 SDE Error. SE_RASTERCOLUMN_EXISTS 561. HRESULT:0x800415C8 SDE Error. SE_INVALID_MVTABLE_INDEX 562. HRESULT:0x800415C9 SDE Error. SE_INVALID_STORAGE_TYPE 563. HRESULT:0x800415CA SDE Error. SE_AMBIGUOUS_NIL_SHAPE 564. HRESULT:0x800415CB SDE Error. SE_INVALID_BYTE_ORDER 565. HRESULT:0x800415CC SDE Error. SE_INVALID_GEOMETRY_TYPE 566. HRESULT:0x800415CD SDE Error. SE_INVALID_NUM_MEASURES 567. HRESULT:0x800415CE SDE Error. SE_INVALID_NUM_PARTS 568. HRESULT:0x800415CF SDE Error. SE_BINARY_TOO_SMALL 569. HRESULT:0x800415D0 SDE Error. SE_SHAPE_TEXT_TOO_LONG 570. HRESULT:0x800415D1 SDE Error. SE_SHAPE_TEXT_ERROR 571. HRESULT:0x800415D2 SDE Error. SE_TOO_MANY_PARTS 572. HRESULT:0x800415D3 SDE Error. SE_TYPE_MISMATCH 573. HRESULT:0x800415D4 SDE Error. SE_SQL_PARENTHESIS_MISMATCH 574. HRESULT:0x800415D5 SDE Error. SE_NIL_SHAPE_NOT_ALLOWED 575. HRESULT:0x800415D6 SDE Error. SE_INSTANCE_ALREADY_RUNNING 576. HRESULT:0x800415D7 SDE Error. SE_UNSUPPORTED_OPERATION 577. HRESULT:0x800415D8 SDE Error. SE_INVALID_EXTERNAL_LAYER_OPTION 578. HRESULT:0x800415D9 SDE Error. SE_NORMALIZE_VALUE_NOT_FOUND 579. HRESULT:0x800415DA SDE Error. SE_INVALID_QUERY_TYPE 580. HRESULT:0x800415DB SDE Error. SE_NO_TRACE_LIBRARY 581. HRESULT:0x800415DC SDE Error. SE_TRACE_ON 582. HRESULT:0x800415DD SDE Error. SE_TRACE_OFF 583. HRESULT:0x800415DE SDE Error. SE_SCL_SYNTAX_ERROR 584. HRESULT:0x800415DF SDE Error. SE_TABLE_REGISTERED 585. HRESULT:0x800415E0 SDE Error. SE_INVALID_REGISTRATION_ID 586. HRESULT:0x800415E1 SDE Error. SE_TABLE_NOREGISTERED 587. HRESULT:0x800415E2 SDE Error. SE_TOO_MANY_REGISTRATIONS 588. HRESULT:0x800415E3 SDE Error. SE_DELETE_NOT_ALLOWED 589. HRESULT:0x800415E6 SDE Error. SE_RASTERCOLUMN_INUSE 590. HRESULT:0x800415E7 SDE Error. SE_RASTERCOLUMN_NOEXIST 591. HRESULT:0x800415E8 SDE Error. SE_INVALID_RASTERCOLUMN_NUMBER 592. HRESULT:0x800415E9 SDE Error. SE_TOO_MANY_RASTERCOLUMNS 593. HRESULT:0x800415EA SDE Error. SE_INVALID_RASTER_NUMBER 594. HRESULT:0x800415EB SDE Error. SE_NO_REQUEST_STATUS 595. HRESULT:0x800415EC SDE Error. SE_NO_REQUEST_RESULTS 596. HRESULT:0x800415ED SDE Error. SE_RASTERBAND_EXISTS 597. HRESULT:0x800415EE SDE Error. SE_RASTERBAND_NOEXIST 598. HRESULT:0x800415EF SDE Error. SE_RASTER_EXISTS 599. HRESULT:0x800415F0 SDE Error. SE_RASTER_NOEXIST 600. HRESULT:0x800415F1 SDE Error. SE_TOO_MANY_RASTERBANDS 601. HRESULT:0x800415F2 SDE Error. SE_TOO_MANY_RASTERS 602. HRESULT:0x800415F3 SDE Error. SE_VIEW_EXISTS 603. HRESULT:0x800415F4 SDE Error. SE_VIEW_NOEXIST 604. HRESULT:0x800415F5 SDE Error. SE_LOCK_EXISTS 605. HRESULT:0x800415F6 SDE Error. SE_ROWLOCK_MASK_CONFLICT 606. HRESULT:0x800415F7 SDE Error. SE_NOT_IN_RASTER 607. HRESULT:0x800415F8 SDE Error. SE_INVALID_RASBANDINFO_OBJECT 608. HRESULT:0x800415F9 SDE Error. SE_INVALID_RASCOLINFO_OBJECT 609. HRESULT:0x800415FA SDE Error. SE_INVALID_RASTERINFO_OBJECT 610. HRESULT:0x800415FB SDE Error. SE_INVALID_RASTERBAND_NUMBER 611. HRESULT:0x800415FC SDE Error. SE_MULTIPLE_RASTER_COLS 612. HRESULT:0x800415FD SDE Error. SE_TABLE_SCHEMA_IS_LOCKED 613. HRESULT:0x800415FE SDE Error. SE_INVALID_LOGINFO_OBJECT 614. HRESULT:0x800415FF SDE Error. SE_SQL_TOO_LONG 615. HRESULT:0x80041600 SDE Error. SE_UNSUPPORTED_ON_VIEW 616. HRESULT:0x80041601 SDE Error. SE_LOG_EXISTS 617. HRESULT:0x80041602 SDE Error. SE_SDE_WARNING 618. HRESULT:0x80041603 SDE Error. SE_ETYPE_CHANGED 619. HRESULT:0x80041604 SDE Error. SE_NO_ROWS_DELETED 620. HRESULT:0x80041605 SDE Error. SE_TOO_MANY_DISTINCTS 621. HRESULT:0x80041606 SDE Error. SE_NULL_VALUE 622. HRESULT:0x80041607 SDE Error. SE_NO_ROWS_UPDATED 623. HRESULT:0x80041608 SDE Error. SE_NO_CPGCVT 624. HRESULT:0x80041609 SDE Error. SE_NO_CPGHOME 625. HRESULT:0x8004160A SDE Error. SE_DBMS_DOES_NOT_SUPPORT 626. HRESULT:0x8004160B SDE Error. SE_ROWLOCKING_ENABLED 627. HRESULT:0x8004160C SDE Error. SE_ROWLOCKING_NOT_ENABLED 628. HRESULT:0x8004160D SDE Error. SE_LOG_IS_OPEN 629. HRESULT:0x8004160E SDE Error. SE_SPATIALREF_EXISTS 630. HRESULT:0x8004160F SDE Error. SE_SPATIALREF_NOEXIST 631. HRESULT:0x80041610 SDE Error. SE_SPATIALREF_IN_USE 632. HRESULT:0x80041611 SDE Error. SE_INVALID_SPATIALREFINFO_OBJECT 633. HRESULT:0x80041612 SDE Error. SE_INVALID_FUNCTION_ID 634. HRESULT:0x80041613 SDE Error. SE_MOSAIC_NOT_ALLOWED 635. HRESULT:0x80041614 SDE Error. SE_PASSWORD_EXPIRED 636. HRESULT:0x80041615 SDE Error. SE_NO_ARCSDE_LICENSE 637. HRESULT:0x80041616 SDE Error. SE_NO_ARCSDE_LICENSE_NO_PERMISSION 638. HRESULT:0x80041617 SDE Error. SE_NO_ARCSDE_LICENSE_SQLEXPRESS 639. HRESULT:0x80041801 The default value is not nullable. DEFAULT_VALUE_NOT_NULLABLE 640. HRESULT:0x80041802 The default value is not valid in the domain. DEFAULT_VALUE_INVALID 641. HRESULT:0x80041851 An object being transfered is in another Feature Dataset. OBJECT_IN_ANOTHER_FEATUREDATASET 642. HRESULT:0x80041852 Only simple features are supported in the simple data converter. ONLY_SIMPLE_FEATURES_SUPPORTED 643. HRESULT:0x80041901 The XML being loaded could not be parsed. XML_PARSE_ERROR 644. HRESULT:0x80041951 Can only reshape one edge at a time. TOPOLOGY_ILLEGAL_RESHAPE 645. HRESULT:0x80041952 The topology with the specified name already exists. TOPOLOGY_ALREADY_EXISTS 646. HRESULT:0x80041953 The topology was not found. TOPOLOGY_NOT_FOUND 647. HRESULT:0x80041954 The topology cannot be renamed. TOPOLOGY_CANNOT_RENAME 648. HRESULT:0x80041955 The feature class in not simple. INVALID_FEATURE_TYPE_FOR_TOPOLOGY 649. HRESULT:0x80041956 The feature class has an invalid geometry type. INVALID_GEOMETRY_TYPE_FOR_TOPOLOGY 650. HRESULT:0x80041957 The topology rule in invalid or malformed. INVALID_TOPOLOGY_RULE 651. HRESULT:0x80041958 The topology workspace extension was not found. TOPOLOGY_WORKSPACE_EXTENSION_NOT_FOUND 652. HRESULT:0x80041959 The topology cluster tolerance cannot be reset. CANNOT_RESET_CLUSTER_TOLERANCE 653. HRESULT:0x8004195A Topologies not supported in this release of the Geodatabase. TOPOLOGIES_NOT_SUPPORTED_IN_RELEASE 654. HRESULT:0x8004195B Feature class weight is invalid. TOPOLOGY_INVALID_WEIGHT 655. HRESULT:0x8004195C Topology errors cannot be directly modified. CANNOT_MODIFY_TOPOLOGY_ERROR_FEATURE 656. HRESULT:0x8004195D Geodatabase TopoClasses system table inconsistent. TOPOCLASSES_SYSTEM_TABLE_INCONSISTENCY 657. HRESULT:0x8004195E The specified cluster tolerance is invalid. INVALID_CLUSTER_TOLERANCE 658. HRESULT:0x8004195F The feature class has an invalid geometry type for the topology rule. INVALID_GEOMETRY_TYPE_FOR_TOPOLOGY_RULE 659. HRESULT:0x80041960 This operation is not supported on topology errors. NOT_SUPPORTED_ON_TOPOLOGY_ERROR_FEATURE 660. HRESULT:0x80041961 System tables cannot be modified. CANNOT_MODIFY_SYSTEM_MANAGED_TABLES 661. HRESULT:0x80041962 Topology edge is not selectable. TOPOLOGY_EDGE_NOT_SELECTABLE 662. HRESULT:0x80041963 The class is already a member of the topology. CLASS_ALREADY_MEMBER_OF_TOPOLOGY 663. HRESULT:0x80041964 An empty envelope was specified for the clean. EMPTY_ENVELOPE_FOR_CLEAN 664. HRESULT:0x80041965 Invalid Topology ID. INVALID_TOPOLOGY_ID 665. HRESULT:0x80041966 A failure was detected in the topology engine. TOPOLOGY_ENGINE_FAILURE 666. HRESULT:0x80041967 A failure was detected in the topology engine overlay processor. TOPOLOGY_ENGINE_OVERPROC_FAILURE 667. HRESULT:0x80041968 Invalid topology rule type. INVALID_TOPOLOGY_RULE_TYPE 668. HRESULT:0x80041969 Cannot currently partially rebuild the topology graph. NO_PARTIAL_REBUILD 669. HRESULT:0x8004196A Cannot add a registered as versioned class to the topology. CANNOT_ADD_REGISTERED_CLASS_TO_TOPOLOGY 670. HRESULT:0x8004196B The number of errors generated during the topology analysis exceeds the specified threshold. TOPOLOGY_ERROR_OVERFLOW 671. HRESULT:0x8004196C Cannot rename a network. NETWORK_CANNOT_RENAME 672. HRESULT:0x8004196D Invalid network type. NETWORK_INVALID_TYPE 673. HRESULT:0x8004196E Network already exists. NETWORK_ALREADY_EXISTS 674. HRESULT:0x8004196F Network geometry invalid. NETWORK_INVALID_GEOMETRY_TYPE 675. HRESULT:0x80041970 Network not found. NETWORK_NOT_FOUND 676. HRESULT:0x80041971 Versioning not supported. VERSIONING_NOT_SUPPORTED 677. HRESULT:0x80041972 The class must be in the same feature dataset as the topology. CLASS_NOT_IN_TOPOLOGIES_FEATURE_DATASET 678. HRESULT:0x80041973 The topology does not contain any associated classes. TOPOLOGY_HAS_NO_CLASSES 679. HRESULT:0x80041974 Feature class rank is invalid. TOPOLOGY_INVALID_RANK 680. HRESULT:0x80041975 All available physical memory has been consumed. OUT_OF_PHYSICAL_MEMORY 681. HRESULT:0x80041976 The topology operation was cancelled by the user. TOPOLOGY_OPERATION_CANCELLED 682. HRESULT:0x80041977 The method is only supported on classes participating in a topology. CLASS_NOT_IN_TOPOLOGY 683. HRESULT:0x80041978 The endpoint of an edge cannot be modified if it is shared by other topology elements. MODIFY_EDGE_ENDPOINT 684. HRESULT:0x80041979 Cannot add a class that is not contained in a feature dataset to a topology. CANNOT_ADD_STANDALONE_CLASS_TO_TOPOLOGY 685. HRESULT:0x8004197A Updates to feature classes in a topology require an edit session. CLASS_IN_TOPOLOGY_REQUIRES_EDIT_SESSION 686. HRESULT:0x8004197B A topology rule cannot be added to a versioned topology. CANNOT_ADD_RULE_TO_VERSIONED_TOPOLOGY 687. HRESULT:0x8004197C Cannot acquire a schema lock because of an existing lock; needed when validating outside edit session. TOPOLOGY_SCHEMA_LOCK_CONFLICT 688. HRESULT:0x8004197D Cannot create a dirty area outside the topology’s spatial domain. DIRTY_AREA_OUTSIDE_SPATIAL_DOMAIN 689. HRESULT:0x8004197E The topology name is invalid. TOPOLOGY_INVALID_NAME 690. HRESULT:0x8004197F The temporary file system space employed by the topology engine is full. TOPOLOGY_ENGINE_TEMP_SPACE_EXHAUSTED 691. HRESULT:0x80041980 The topology rule is inconsistent with other topology rules. INCONSISTENT_TOPOLOGY_RULE 692. HRESULT:0x80041981 Unsupported topology rule type. UNSUPPORTED_TOPOLOGY_RULE 693. HRESULT:0x80041982 Invalid topology rule type. INVALID_TOPOLOGY_RULE_CLASS_ASSIGNMENT 694. HRESULT:0x80041983 The operation is not supported inside an edit session. OPERATION_NOT_SUPPORTED_IN_EDIT_SESSION 695. HRESULT:0x80041984 A topology graph edit operation caused a feature geometry to become empty. TOPOLOGY_EMPTY_GEOMETRY 696. HRESULT:0x80041985 The topology graph cannot be constructed on the specified extent because the requested precision is too high. TOPOLOGY_EXTENT_TOO_LARGE 697. HRESULT:0x80041986 Z cluster tolerances are not supported in this release of the Geodatabase. Z_CLUSTER_TOLERANCE_NOT_SUPPORTED_IN_RELEASE 698. HRESULT:0x80041987 The operation requires an edit session. OPERATION_REQUIRES_EDIT_SESSION 699. HRESULT:0x80041988 The operation is not supported inside an edit session. OPERATION_NOT_SUPPORTED_IN_EDIT_OPERATION 700. HRESULT:0x80041989 The operation cannot be applied because the topology graph has not been defined. TOPOGRAPH_NOT_BUILT 701. HRESULT:0x8004198A The topo graph may be corrupt. Please rebuild it. TOPOGRAPH_CORRUPT 702. HRESULT:0x8004198B Nodes representing vertical edges cannot be removed during a merge operation. CANT_MERGE_VERTICALEDGES 703. HRESULT:0x8004198C The selected edges do not all belong to the same set of features. INCONSISTANT_MERGE_PARENTS 704. HRESULT:0x8004198D The selected set of edges does not form a connected path. EDGE_SET_NOT_CONNECTED 705. HRESULT:0x8004198E The topology rule is not supported in this release of the Geodatabase. TOPOLOGY_RULE_NOT_SUPPORTED_IN_RELEASE 706. HRESULT:0x8004198F Can’t merge branching selected edges. CANT_MERGE_BRANCHINGEDGES 707. HRESULT:0x80041990 Can’t merge edge for self-overlapping polyline feature. NOT_PSEUDONODE 708. HRESULT:0x80041991 A class in the network dataset necessitates edits being run within an edit session. CLASS_IN_NETWORK_REQUIRES_EDIT_SESSION 709. HRESULT:0x80041992 Cannot add a class that is registered as versioned to a topology that is not registered as versioned. CANNOT_ADD_VERSIONED_CLASS_TO_NON_VERSIONED_TOPOLOGY 710. HRESULT:0x80041993 Cannot add a class that is not registered as versioned to a topology that is registered as versioned. CANNOT_ADD_NON_VERSIONED_CLASS_TO_VERSIONED_TOPOLOGY 711. HRESULT:0x80041994 Schema edits to a versioned topology are not supported in this release of the geodatabase. TOPOLOGIES_SCHEMA_CHANGES_NOT_SUPPORTED_IN_RELEASE 712. HRESULT:0x80041995 The terrain was not found. TERRAIN_NOT_FOUND 713. HRESULT:0x80042051 The Name String syntax of is incorrect. NAME_STRING_SYNTAX 714. HRESULT:0x80042101 The input XML is invalid for import into the specified object. INVALID_IMPORT_XML 715. HRESULT:0x80042102 The required XML element was not found. REQUIRED_XML_ELEMENT_NOT_FOUND 716. HRESULT:0x80042103 No dataset found to export. XML_EXPORT_DATASET_NOT_FOUND 717. HRESULT:0x80042151 The object is not in Replicable format (please configure). CLASS_NOT_REPLICABLE 718. HRESULT:0x80042152 Conflicts were detected during synchronization between replica pairs. SYNCHRONIZATION_CONFLICTS 719. HRESULT:0x80042153 Cannot synchronize because the replica version has not be reconciled against the sync version. CANNOT_SYNCHRONIZE 720. HRESULT:0x80042154 Replica data was not found. REPLICA_NOT_FOUND 721. HRESULT:0x80042155 Error during reconcile. RECONCILE_FAILED 722. HRESULT:0x80042156 Invalid Replica. INVALID_REPLICA 723. HRESULT:0x80042157 Generation numbers out of order GENERATION_OUT_OF_ORDER 724. HRESULT:0x80042158 Previous synchronization had conflicts SYNCHRONIZATION_HAS_CONFLICTS 725. HRESULT:0x80042159 Replication not supported in this release REPLICATION_NOT_SUPPORTED_IN_RELEASE 726. HRESULT:0x8004215A Replication not supported in this release REPLICATION_NOT_SUPPORTED 727. HRESULT:0x8004215B Transmission does not contains changes previously sent MISSING_ACKNOWLEDGEMENT 728. HRESULT:0x8004215C Transmission cannot be sent until acknowledgement of previously sent changes CANNOT_SEND_TRANSMISSION 729. HRESULT:0x8004215D Another synchronization in progess has locked the replica REPLICA_LOCKED 730. HRESULT:0x8004215E An operation in a replica dataset is invalid since a related replica dataset is referenced by the replica. RELATED_DATASET_IS_REFERENCED_BY_REPLICA 731. HRESULT:0x8004215F Operation not supported on a read-only replica READONLY_REPLICA 732. HRESULT:0x80042160 Old messages OLD_MESSAGE 733. HRESULT:0x80042161 Replica in a SendingData state REPLICA_IN_SENDING_DATA_STATE 734. HRESULT:0x80042162 Can only import acknowledgment messages REPLICA_CAN_ONLY_IMPORT_ACKNOWLEDGMENT 735. HRESULT:0x80042163 Replica does not have any unacknowledged generations REPLICA_NO_UNACKNOWLEDGED_GENERATIONS 736. HRESULT:0x80042164 Multi generations replicas are not supported in workspace MULTIGEN_REPLICAS_NOT_SUPPORTED_IN_WORKSPACE 737. HRESULT:0x80042165 Cannot reexport changes from checkouts CHECKOUTS_CANNOT_REEXPORT_CHANGES 738. HRESULT:0x80042166 Cannot reexport changes from data receiver replica REPLICA_RECEIVER_CANNOT_REEXPORT_CHANGES 739. HRESULT:0x80042167 Cannot export changes from data receiver replica REPLICA_RECEIVER_CANNOT_EXPORT_CHANGES 740. HRESULT:0x80042168 Cannot checkout a high precision data to a low precision dataset CANNOT_CHECKOUT_HIGH_PREC_DATA_IN_LOW_PREC_DATASET 741. HRESULT:0x80042169 Cannot checkout a high precision data to a low precision dataset CANNOT_REPLICATE_LOW_PRECISION_DATA 742. HRESULT:0x8004216A Invalid output xml file REPLICA_INVALID_OUTPUT_XML_FILE 743. HRESULT:0x8004216B Cannot register replicas for existing datasets. FDO_NO_MATCH_DATASETS_FOUND_FOR_REGISTER_REPLICAS 744. HRESULT:0x8004216C Cannot register non simple dataset in a replica. NON_SIMPLE_DATASET_CANNOT_BE_REGISTERED_BY_REPLICA 745. HRESULT:0x8004216D Replica name contains invalid chars. INVALID_REPLICA_NAME 746. HRESULT:0x8004216E Messages have already been acknowledged. REPLICA_OLD_ACK 747. HRESULT:0x8004216F Messages have already been acknowledged. REPLICA_SCHEMA_CHANGES_WRONG_DIRECTION 748. HRESULT:0x80042170 Cannot create empty replica. CANNOT_CREATE_EMPTY_REPLICA 749. HRESULT:0x80042171 Cannot create empty replica. INVALID_DATA_FOR_THIS_OPERATION 750. HRESULT:0x80042172 Sync version of a replica not yet reconciled and posted. REPLICA_SYNC_VERSION_NOT_YET_POSTED 751. HRESULT:0x80042173 Child replica cannot be created in the same database as the source data. CHILD_REPLICA_CANNOT_BE_CREATED_IN_PARENTDB 752. HRESULT:0x80042174 GlobalID column cannot be deleted if it is referenced by a replica. GLOBALID_FIELD_REFERENCED_BY_REPLICA_CANNOT_BE_DELETED 753. HRESULT:0x80042175 Must be Replica owner to perform this operation. MUST_BE_REPLICA_OWNER 754. HRESULT:0x80042176 Replica with the same name already exists. REPLICA_NAME_ALEARDY_EXISTS 755. HRESULT:0x80042177 Cannot register empty replica. CANNOT_REGISTER_EMPTY_REPLICA 756. HRESULT:0x80042178 Cannot unregister globalID. FDO_UNREGISTER_GLOBALID_NOT_SUPPORTED 757. HRESULT:0x80042179 Cannot register nullable globalID. FDO_REGISTER_NULLABLE_GLOBALID_NOT_SUPPORTED 758. HRESULT:0x8004217A Cannot register nullable globalID. FDO_REGISTER_VERSIONED_GLOBALID_NOT_SUPPORTED 759. HRESULT:0x8004217B Cannot create a replica using archiving to a named version. FDO_ONEWAY_REPLICA_USING_ARCHIVING_NOT_SUPPORTED_IN_NAMED_VERSIONS 760. HRESULT:0x8004217C Cannot create oneway replica parent readonly on local workspaces. FDO_ONEWAY_REPLICA_PARENT_READONLY_NOT_SUPPORTED_IN_LOCAL_CHILD_WORKSPACES 761. HRESULT:0x8004217D Cannot synchronize a protected version by anyone other than the owner/dba of the version. MUST_BE_VERSION_OWNER_TO_SYNC 762. HRESULT:0x8004217E Cannot register data as replicas in a transport FileGDB. Only xml transport file is supported. FDO_DATA_CANNOT_BE_REGISTERED_AS_REPLICAS_IN_TRANSPORT_FGDB 763. HRESULT:0x8004217F Operation is not supported. Child and parent replica cannot exist in the same geodatabase. CHILD_PARENT_REPLICA_CANNOT_EXIST_IN_SAME_GEODATABASE 764. HRESULT:0x80042180 Failed to set the target name. FAILED_TO_SET_TARGET_NAME 765. HRESULT:0x80042251 There is no associated default turn evaluator. NO_DEFAULT_TURN_EVALUATOR 766. HRESULT:0x80042252 Feature dataset network dataset containers are not supported. FEATURE_DATASET_CONTAINERS_NOT_SUPPORTED 767. HRESULT:0x80042253 The network dataset name is invalid. NETWORK_DATASET_INVALID_NAME 768. HRESULT:0x80042254 The network attribute name is invalid. INVALID_NETWORK_ATTRIBUTE_NAME 769. HRESULT:0x80042255 The network source is invalid for the evaluator. INVALID_NETWORK_SOURCE_FOR_EVALUATOR 770. HRESULT:0x80042256 The expression is invalid for the evaluator. INVALID_EXPRESSION_FOR_EVALUATOR 771. HRESULT:0x80042257 Invalid constant for attribute data type. INVALID_CONSTANT_FOR_NETWORK_ATTRIBUTE 772. HRESULT:0x80042258 Subtype specification is required (UsesSubtypes is True). SUBTYPES_REQUIRED 773. HRESULT:0x80042259 Invalid network dataset schema. INVALID_NETWORK_DATASET_SCHEMA 774. HRESULT:0x8004225A Network object evaluator error. NETWORK_OBJECT_EVALUATOR_ERROR 775. HRESULT:0x8004225B Bad network edge orientation. NETWORK_BAD_EDGE_ORIENTATION 776. HRESULT:0x8004225C The network dataset has an invalid access mode. NETWORK_DATASET_INVALID_ACCESS 777. HRESULT:0x8004225D There is no associated default junction evaluator. NO_DEFAULT_JUNCTION_EVALUATOR 778. HRESULT:0x8004225E There is no associated default edge evaluator. NO_DEFAULT_EDGE_EVALUATOR 779. HRESULT:0x8004225F The network dataset does not support turns. NETWORK_DATASET_NOTURNS 780. HRESULT:0x80042260 Network element evaluator error. NETWORK_ELEMENT_EVALUATOR_ERROR 781. HRESULT:0x80042261 The dataset for the network source was not found. NETWORK_SOURCE_DATASET_NOT_FOUND 782. HRESULT:0x80042262 The source is not valid for the network. INVALID_NETWORK_SOURCE 783. HRESULT:0x80042263 The attribute is not valid for the network. INVALID_NETWORK_ATTRIBUTE 784. HRESULT:0x80042264 The connectivity group name is invalid. INVALID_CONNECTIVITY_GROUP_NAME 785. HRESULT:0x80042265 Subtype specification is not valid. SUBTYPES_NOT_IN_USE 786. HRESULT:0x80042266 Network datasets are not supported in this release of the Geodatabase. NETWORK_DATASETS_NOT_SUPPORTED_IN_RELEASE 787. HRESULT:0x80042267 The network dataset with the specified name already exists. NETWORK_DATASET_ALREADY_EXISTS 788. HRESULT:0x80042268 A connectivity group was not specified for one or more subtypes. SUBTYPES_UNSPECIFIED_CONN_GROUP 789. HRESULT:0x80042269 A connectivity policy was not specified for one or more subtypes. SUBTYPES_UNSPECIFIED_CONN_POLICY 790. HRESULT:0x8004226A The geometry type for the feature class is not valid for the network source. INVALID_NETWORK_SOURCE_GEOMETRY_TYPE 791. HRESULT:0x8004226B The feature type of the feature class is not valid for the network source. INVALID_NETWORK_SOURCE_FEATURE_TYPE 792. HRESULT:0x8004226C The fromEdge is not connected to the AtJunction. FSTAR_INVALID_FROM_EDGE 793. HRESULT:0x8004226D The evaluator object could not be created. EVALUATOR_CREATE 794. HRESULT:0x8004226E The evaluator failed to initialize data. EVALUATOR_INITIALIZE_DATA 795. HRESULT:0x8004226F The evaluator failed to initialize for queries. EVALUATOR_INITIALIZE_QUERY 796. HRESULT:0x80042270 The evaluator failed to return a value. EVALUATOR_QUERY 797. HRESULT:0x80042271 The network element id is invalid. INVALID_NETWORK_ELEMENT_ID 798. HRESULT:0x80042272 The network edge direction is invalid. INVALID_NETWORK_EDGE_DIRECTION 799. HRESULT:0x80042273 The network edge direction is invalid. INVALID_NETWORK_TURN_TYPE 800. HRESULT:0x80042274 There is no turn present at this adjacency index. TURN_NOT_PRESENT 801. HRESULT:0x80042275 Build is not supported on this network. BUILD_NOT_SUPPORTED 802. HRESULT:0x80042276 The operation is not supported on a buildable network. OPERATION_NOT_SUPPORTED_ON_BUILDABLE_NETWORK 803. HRESULT:0x80042277 The source name is invalid. NETWORK_SOURCE_INVALID_NAME 804. HRESULT:0x80042278 The element type for the network source is not valid. NETWORK_SOURCE_INVALID_ELEMENT_TYPE 805. HRESULT:0x80042279 There is no system junction source. NO_SYSTEM_JUNCTION_SOURCE 806. HRESULT:0x8004227A The system junction source is bad. BAD_SYSTEM_JUNCTION_SOURCE 807. HRESULT:0x8004227B The network element has not been initialized. NETWORK_ELEMENT_NOT_INITIALIZED 808. HRESULT:0x8004227C Attributes cannot be added to network datasets with no sources. ATTRIBUTES_WITHOUT_SOURCES 809. HRESULT:0x8004227D The hierarchy max range values are invalid. INVALID_HIERARCHY_RANGES 810. HRESULT:0x8004227E Network attributes cannot be deleted. CANNOT_DELETE_NETWORK_ATTRIBUTES 811. HRESULT:0x8004227F Network source directions not supported on this network source type. SOURCE_DIRECTIONS_NOT_SUPPORTED 812. HRESULT:0x80042280 The network source with the specified name already exists. NETWORK_SOURCE_ALREADY_EXISTS 813. HRESULT:0x80042281 The network source with the specified name does not exist. NETWORK_SOURCE_NAME_DOESNT_EXIST 814. HRESULT:0x80042282 The network evaluator cannot be used as a default evaluator. EVALUATOR_CANNOT_BE_DEFAULT_EVALUATOR 815. HRESULT:0x80042283 The network attribute is invalid for the evaluator. INVALID_NETWORK_ATTRIBUTE_FOR_EVALUATOR 816. HRESULT:0x80042284 The network evaluator has not been validated. EVALUATOR_NOT_VALIDATED 817. HRESULT:0x80042285 The network evaluator is not valid. EVALUATOR_NOT_VALID 818. HRESULT:0x80042286 The network evaluator has not been initialized. EVALUATOR_NOT_INITIALIZED 819. HRESULT:0x80042287 The network evaluator has a syntax error. EVALUATOR_SYNTAX_ERROR 820. HRESULT:0x80042288 The network field evaluator is associated with a field than cannot be found. FIELD_EVALUATOR_FIELD_NOT_FOUND 821. HRESULT:0x80042289 The attribute id value is invalid. INVALID_NETWORK_ATTRIBUTE_ID 822. HRESULT:0x8004228A The network source fullname property is invalid. NETWORK_SOURCE_INVALID_FULLNAME 823. HRESULT:0x8004228B The evaluator in use is not a constant evaluator. NOT_CONSTANT_EVALUATOR 824. HRESULT:0x8004228C Cannot assign a directional evaluator to a junction source. DIRECTIONAL_EVALUATOR_WITH_JUNCTION_SOURCE 825. HRESULT:0x8004228D The data element type is incorrect for the operation. INCORRECT_DATA_ELEMENT_TYPE 826. HRESULT:0x8004228E The number or type of sources are invalid for shapefile-based network datasets. INVALID_SOURCES_FOR_SHAPEFILE_NETWORK_DATASET 827. HRESULT:0x8004228F The network source has an inconsistent elevation field specification. NETWORK_SOURCE_INCONSISTENT_ELEVATION_SPECIFICATION 828. HRESULT:0x80042290 The turn feature class does not participate in a network dataset. TURN_NO_NETWORK 829. HRESULT:0x80042291 The geometry references too many edges for the turn feature class. TURN_GEOM_TOO_MANY_VERTICES 830. HRESULT:0x80042292 The current edge sequence is not valid. TURN_NOT_VALID 831. HRESULT:0x80042293 The geometry must have polyline geometry type. TURN_GEOM_NOT_POLYLINE 832. HRESULT:0x80042294 A turn must include at least two edges. TURN_GEOM_NOT_ENOUGH_VERTICES 833. HRESULT:0x80042295 The geometry cannot be a multipart line. TURN_GEOM_MULTIPART 834. HRESULT:0x80042296 The first vertex could not be snapped to a network edge. TURN_GEOM_NO_FIRST_FEATURE 835. HRESULT:0x80042297 The last vertex could not be snapped to a network edge. TURN_GEOM_NO_LAST_FEATURE 836. HRESULT:0x80042298 The turn references a line feature that does not have network edge elements. TURN_GEOM_NO_FEATURES 837. HRESULT:0x80042299 The edges are not adjacent in the network dataset. TURN_GEOM_DISCONNECTED_FEATURES 838. HRESULT:0x8004229A The edges are not adjacent in the network dataset in this sequence. TURN_GEOM_INVALID_SEQUENCE 839. HRESULT:0x8004229B A turn must include at least two edges. TURN_NOT_ENOUGH_PARTS 840. HRESULT:0x8004229C A network edge element used in the middle of the turn sequence cannot also be used at the start or end of the sequence. TURN_NDS_INTERIOR_EXTERIOR_CONFLICT 841. HRESULT:0x8004229D A turn cannot have any self-looping edge elements. TURN_NDS_EXTERIOR_LOOP 842. HRESULT:0x8004229E No edge feature sources have been added to the current map. TURN_NO_EDGE_SOURCES 843. HRESULT:0x8004229F The value for the Edge1End field in the turn feature class is invalid. TURN_INVALID_EDGE1END 844. HRESULT:0x800422A0 The direction of the turn cannot be determined. TURN_GEOM_AMBIGUOUS_FEATURES 845. HRESULT:0x800422A1 The network dataset cannot be opened as one of its network sources is missing. NETWORK_MISSING_SOURCE 846. HRESULT:0x800422A2 Cannot assign a directional evaluator to a turn source. DIRECTIONAL_EVALUATOR_WITH_TURN_SOURCE 847. HRESULT:0x800422A3 Cannot find the feature class associated with the network source. NETWORK_SOURCE_MISSING_FEATURE_CLASS 848. HRESULT:0x800422A4 The network source must correspond to a simple feature class. NETWORK_SOURCE_NOT_SIMPLE_FEATURE_CLASS 849. HRESULT:0x800422A5 The network source participates in multiple network datasets. NETWORK_SOURCE_IN_MULTIPLE_NETWORKS 850. HRESULT:0x800422A6 Unable to instantiate the network evaluator component. NETWORK_EVALUATOR_CREATE_FAILED 851. HRESULT:0x800422A7 Cannot assign a field evaluator as a default evalautor. FIELD_EVALUATOR_AS_DEFAULT_EVALUATOR 852. HRESULT:0x800422A8 Cannot assign a non-directional evaluator with an edge feature source. NODIRECTIONAL_EVALUATOR_WITH_EDGE_SOURCE 853. HRESULT:0x800422A9 The network source is missing for the evaluator. MISSING_NETWORK_SOURCE_FOR_EVALUATOR 854. HRESULT:0x800422AA The geometry for a turn cannot start or end at a junction. TURN_ILLEGAL_START_END_POS 855. HRESULT:0x800422AB System junction sources cannot be deleted. CANNOT_DELETE_SYSTEM_JUNCTION_SOURCE 856. HRESULT:0x800422AC The value for one of the edge descriptors is invalid. TURN_INVALID_EDGE_DESCRIPTOR 857. HRESULT:0x800422AD Turn support cannot be changed on an existing network dataset. TURN_CANNOT_CHANGE_SUPPORT 858. HRESULT:0x800422AE The id value cannot be represented in 32 bits. ID_OVERFLOW 859. HRESULT:0x800422AF The value for maximum edges per turn is invalid. TURN_INVALID_MAX_EDGES 860. HRESULT:0x800422B0 The value for maximum edges per turn cannot be less than the existing value. TURN_INVALID_CUR_MAX_EDGES 861. HRESULT:0x800422B1 The script control is unavailable. NO_SCRIPT_CONTROL 862. HRESULT:0x800422B2 The vertices of the turn geometry must intersect each edge in the turn. TURN_MISSING_EDGE 863. HRESULT:0x800422B3 The system junction class does not have the elevation field. MISSING_SYSTEM_JUNCTION_CLASS_ELEV_FIELD 864. HRESULT:0x800422B4 The system junction class elevation field does not have long integer type. BAD_TYPE_SYSTEM_JUNCTION_CLASS_ELEV_FIELD 865. HRESULT:0x800422B5 The schema update is invalid. INVALID_SCHEMA_UPDATE 866. HRESULT:0x800422B6 The UseByDefault property on a network attribute is not supported in this Geodatabase release. USE_BY_DEFAULT_NOT_SUPPORTED 867. HRESULT:0x800422B7 Signposts on network directions are not supported in this Geodatabase release. SIGNPOSTS_NOT_SUPPORTED 868. HRESULT:0x800422B8 The network attribute with the specified name already exists. NETWORK_ATTRIBUTE_ALREADY_EXISTS 869. HRESULT:0x800422B9 The network directions output length unit is invalid. INVALID_DIRECTIONS_LENGTH_UNIT 870. HRESULT:0x800422BA The global turn delay categories are overlapping. OVERLAPPING_NETWORK_GLOBAL_TURN_DELAY_CATEGORIES 871. HRESULT:0x800422BB The network attribute does not have cost usage. NETWORK_ATTRIBUTE_NOT_COST_USAGE 872. HRESULT:0x800422BC The network attribute does not have time units. NETWORK_ATTRIBUTE_NOT_TIME_UNITS 873. HRESULT:0x800422BD The network attribute evaluator is self referential. NETWORK_ATTRIBUTE_REFERENCES_SELF 874. HRESULT:0x800422BE The operator used by the network function operator is not supported for this attribute data type. NETWORK_FUNCTION_EVALUATOR_OPERATOR_NOT_SUPPORTED 875. HRESULT:0x800422BF The first argument to the network function evaluator is invalid. NETWORK_FUNCTION_EVALUATOR_ARGUMENT1_INVALID 876. HRESULT:0x800422C0 The second argument to the network function evaluator is invalid. NETWORK_FUNCTION_EVALUATOR_ARGUMENT2_INVALID 877. HRESULT:0x800422C1 The parameter used by this network function evaluator does not exist. NETWORK_FUNCTION_EVALUATOR_PARAMETER_MISSING 878. HRESULT:0x800422C2 The parameter used by this network function evaluator is not numeric. NETWORK_FUNCTION_EVALUATOR_PARAMETER_NOT_NUMERIC 879. HRESULT:0x800422C3 The function evaluator value calculation results in a numeric overflow. NETWORK_FUNCTION_EVALUATOR_OVERFLOW 880. HRESULT:0x800422C4 The attribute referenced by the network function evaluator does not exist. NETWORK_FUNCTION_EVALUATOR_MISSING_REFERENCED_NETWORK_ATTRIBUTE 881. HRESULT:0x800422C5 The attribute referenced by the network function evalutor is not numeric. NETWORK_FUNCTION_EVALUATOR_REFERENCED_NETWORK_ATTRIBUTE_NOT_NUMERIC 882. HRESULT:0x800422C6 The network evaluator is not supported. EVALUATOR_NOT_SUPPORTED 883. HRESULT:0x800422C7 INetworkForwardStarSetup.AddCachedAttribute has been deprecated and should not be called. FORWARDSTAR_ADD_CACHED_ATTRIBUTE_DEPRECATED 884. HRESULT:0x800422C8 INetworkForwardStarSetup.RemoveAllCachedAttributes has been deprecated and should not be called. FORWARDSTAR_REMOVE_CACHED_ATTRIBUTES_DEPRECATED 885. HRESULT:0x800422C9 The network attribute usage type is invalid for this operation. INVALID_NETWORK_ATTRIBUTE_USAGE_TYPE 886. HRESULT:0x800422CA The network attribute adjustment type is invalid for the given range along this edge. INVALID_NETWORK_EDGE_ATTRIBUTE_ADJUSTMENT 887. HRESULT:0x800422CB The provided network attribute adjustment value is invalid for this operation on this network attribute. INVALID_NETWORK_ATTRIBUTE_ADJUSTMENT_VALUE 888. HRESULT:0x800422CC The range of positions is invalid for this operation. INVALID_POSITION_RANGE 889. HRESULT:0x800422CD Network elevation model cannot be changed in the existing network dataset. NETWORK_ELEVATION_MODEL_CANNOT_CHANGE 890. HRESULT:0x800422CE Connectivity by Z coordinates is not supported in this geodatabase release. ZCOORDINATES_NOT_SUPPORTED_IN_RELEASE 891. HRESULT:0x800422CF Network source cannot be added to the 3D network dataset since it is not Z-aware. NETWORK_SOURCE_INVALID_ELAVATION_MODEL 892. HRESULT:0x800422D0 The network edge does not have a covering hyperedge. NETWORK_COVERING_HYPEREDGE_DOES_NOT_EXIST 893. HRESULT:0x800422D1 The evaluator is invalid for shapefile-based network datasets. INVALID_EVALUATOR_FOR_SHAPEFILE_NETWORK_DATASET 894. HRESULT:0x800422D2 The usage type or unit type of the evaluator is invalid. INVALID_USAGE_OR_UNIT_TYPE_FOR_EVALUATOR 895. HRESULT:0x800422D3 The traffic data is invalid. INVALID_TRAFFIC_DATA 896. HRESULT:0x800422D4 The time slice field name is invalid. INVALID_TIME_SLICE_FIELD_NAME 897. HRESULT:0x800422D5 Historical traffic data cannot be added to or deleted from the existing network dataset. HISTORICAL_TRAFFIC_DATA_CANNOT_CHANGE 898. HRESULT:0x800422D6 The traffic data is not supported. TRAFFIC_DATA_NOT_SUPPORTED 899. HRESULT:0x800422D7 Traffic data fallback or time neutral attribute is missing. TRAFFIC_DATA_ATTRIBUTE_MISSING 900. HRESULT:0x800422D8 The network dataset does not have a time zone attribute. NETWORK_DATASET_NO_TIME_ZONE 901. HRESULT:0x800422D9 The network dataset signpost table is not registered in the Geodatabase. SIGNPOST_TABLE_NOT_REGISTERED 902. HRESULT:0x800422DA The network dataset build should be done outside of an edit session. BUILD_INSIDE_EDIT_SESSION 903. HRESULT:0x800422DB The network dataset has already been built. BUILDNETWORK_ALREADYBUILD 904. HRESULT:0x800422DC “For forward traversal, the AtJunction must be the FromEdge’s ToJunction.” FSTAR_INVALID_FROM_EDGE_FORWARD 905. HRESULT:0x800422DD “For backward traversal, the AtJunction must be the FromEdge’s FromJunction.” FSTAR_INVALID_FROM_EDGE_BACKWARD 906. HRESULT:0x800422DE No matching attribute record found. NO_ATTRIBUTE_RECORD 907. HRESULT:0x800422DF The network dataset needs to be upgraded. NETWORK_DATASET_NEEDS_UPGRADE 908. HRESULT:0x800422E0 The network dataset has already being upgraded. NETWORK_DATASET_ALREADY_UPGRADED 909. HRESULT:0x800422E1 “The input time value is before January 1, 1970.” INVALID_TIME_VALUE 910. HRESULT:0x800422E2 The time usage type is invalid. INVALID_NETWORK_TIME_USAGE_TYPE 911. HRESULT:0x800422E3 Invalid time zone ObjectID. INVALID_TIME_ZONE_OBJECTID 912. HRESULT:0x800422E4 Invalid time zone name. INVALID_TIME_ZONE_NAME 913. HRESULT:0x800422E5 The length attribute used by the traffic data is missing. TRAFFIC_DATA_LENGTH_ATTRIBUTE_MISSING 914. HRESULT:0x800422E6 The number of input array values must equal the number of time slices specified in the last call to StartEditing. INVALID_TIME_SLICE_ARRAY 915. HRESULT:0x800422E7 Schema edits to a versioned network dataset are not supported. NETWORK_SCHEMA_CHANGES_NOT_SUPPORTED 916. HRESULT:0x800422E8 The landmark source is not valid. INVALID_NETWORK_LANDMARK_SOURCE 917. HRESULT:0x800422E9 The geometry type for the feature class is not valid for the network landmark source. INVALID_NETWORK_LANDMARK_SOURCE_GEOMETRY_TYPE 918. HRESULT:0x800422EA Invalid or missing network landmark source field. INVALID_NETWORK_LANDMARK_SOURCE_FIELD 919. HRESULT:0x800422EB A time zone network attribute is required for network datasets that use live traffic feeds. TIME_ZONE_ATTRIBUTE_IS_REQUIRED 920. HRESULT:0x80042401 The cadastral fabric name is invalid. CADASTRAL_FABRIC_INVALID_NAME 921. HRESULT:0x80042402 Cadastral fabrics are not supported in this release of the Geodatabase. CADASTRAL_FABRICS_NOT_SUPPORTED_IN_RELEASE 922. HRESULT:0x80042403 A cadastral fabric with the specified name already exists. CADASTRAL_FABRIC_ALREADY_EXISTS 923. HRESULT:0x80042404 A job with the specified name already exists for the cadastral fabric. CADASTRAL_FABRIC_JOB_ALREADY_EXISTS 924. HRESULT:0x80042405 The status of the job is invalid for this procedure. CADASTRAL_FABRIC_JOB_INVALID_STATUS 925. HRESULT:0x80042406 Schema error. Required fields are missing. CADASTRAL_FABRIC_SCHEMA_CORRUPTION 926. HRESULT:0x80042407 Lock already exists for cadastral feature. CADASTRAL_FABRIC_JOB_LOCK_ALREADY_EXISTS 927. HRESULT:0x80042408 System table is missing. CADASTRAL_FABRIC_MISSING_SYSTEM_TABLE 928. HRESULT:0x80042409 Data is corrupted. CADASTRAL_FABRIC_DATA_CORRUPTION 929. HRESULT:0x8004240A Job has already been committed. CADASTRAL_FABRIC_JOB_ALREADY_COMMITTED 930. HRESULT:0x8004240B The cadastral job was not found. CADASTRAL_FABRIC_JOB_NOT_FOUND 931. HRESULT:0x8004240C XML Packet failed to load. CADASTRAL_FABRIC_PACKET_LOAD_FAILED 932. HRESULT:0x8004240D XML Packet is missing required data. CADASTRAL_FABRIC_PACKET_MISSING_DATA 933. HRESULT:0x8004240E The specified cadastral job does not belong to the current fabric. JOB_DOES_NOT_BELONG_TO_FABRIC 934. HRESULT:0x8004240F Edits to the fabric require an edit session. CADASTRAL_FABRIC_PACKET_POST_REQUIRES_EDIT_SESSION 935. HRESULT:0x80042410 Cannot commit a cadastral job that contains unjoined parcels. JOB_UNJOINED_PARCEL_PRESENT 936. HRESULT:0x80042411 The version of XML cannot be loaded. CADASTRAL_FABRIC_XML_PARSER_NOT_FOUND 937. HRESULT:0x80042412 Cadastral feature already updated in default version. CADASTRAL_FABRIC_OBJECT_ALREADY_MODIFIED 938. HRESULT:0x80042413 Cadastral feature is part of a job that is currently been edited. CADASTRAL_FABRIC_JOB_CURRENTLY_EDITED 939. HRESULT:0x80042414 Source Datum does not match Cadastral Fabric Datum. CADASTRAL_FABRIC_DATUM_MISMATCH 940. HRESULT:0x80042415 Cannot reconcile grandchild versions with fabric edits against default. CADASTRAL_FABRIC_ILLEGAL_RECONCILE 941. HRESULT:0x80042416 Cannot commit the given job - no name supplied. CADASTRAL_FABRIC_COMMIT_NO_NAME 942. HRESULT:0x80042417 Cannot commit the given job - not in default. CADASTRAL_FABRIC_COMMIT_NOT_DEFAULT 943. HRESULT:0x80042418 Cannot commit the given job - the job is currently locked. CADASTRAL_FABRIC_COMMIT_JOB_LOCKED 944. HRESULT:0x80042419 Cannot delete the given job - the job is not committed. CADASTRAL_FABRIC_JOB_NOT_COMMITTED 945. HRESULT:0x8004241A Copy paste of a topology with a cadastral fabric dataset is not supported in this release. CADASTRAL_FABRIC_COPY_WITH_TOPOLOGY_NOT_SUPPORTED_IN_RELEASE 946. HRESULT:0x8004241B The cadastral fabric operation was cancelled. CADASTRAL_FABRIC_OPERATION_CANCELLED 947. HRESULT:0x8004241C The parcel fabric dataset has already being upgraded. CADASTRAL_FABRIC_ALREADY_UPGRADED 948. HRESULT:0x80042501 Personal SDE can only have one editor. PERSONAL_SDE_ONE_EDITOR 949. HRESULT:0x80042502 Failed to connect to Database Server. CANNOT_CONNECT_TO_SERVER 950. HRESULT:0x80042601 The item was not found. ITEM_NOT_FOUND 951. HRESULT:0x80042602 The item with path already exists. ITEM_WITH_PATH_EXISTS 952. HRESULT:0x80042603 The item does not have a definition. ITEM_DOES_NOT_HAVE_DEFINITION 953. HRESULT:0x80042604 The catalog path is invalid. INVALID_CATALOG_PATH 954. HRESULT:0x80042605 A relationship already exists between these items. ITEM_RELATIONSHIP_EXISTS 955. HRESULT:0x80042606 Cannot change the visibility of an existing item. CANNOT_CHANGE_ITEM_VISIBILITY 956. HRESULT:0x80042607 Item relationship visibility must match the visibility of the related items. RELATIONSHIP_VISIBILITY_INVALID 957. HRESULT:0x80042608 UpdateDataset cannot change this property. CANNOT_CHANGE_ITEM_PROPERTY 958. HRESULT:0x80042609 Item relationship attributes are invalid. RELATIONSHIP_ATTRIBUTES_INVALID 959. HRESULT:0x8004260A Cannot upgrade because there are other active connections. OTHER_ACTIVE_CONNECTIONS 960. HRESULT:0x8004260B User does not have required priviliges to upgrade. USER_DOES_NOT_HAVE_UPGRADE_PRIVILIGES 961. HRESULT:0x8004260C Instance is not upgradable. INSTANCE_IS_NOT_UPGRADABLE 962. HRESULT:0x8004260D Instance does not support XML type. INSTANCE_DOES_NOT_SUPPORT_XML_TYPE 963. HRESULT:0x8004260E The item relationship was not found. ITEM_RELATIONSHIP_NOT_FOUND 964. HRESULT:0x8004260F The item associated with an item relationship was not found. ITEM_RELATIONSHIP_ITEM_NOT_FOUND 965. HRESULT:0x80042610 The dataset definition is missing an expected controller membership. DEFINITION_MISSING_CONTROLLER_MEMBERSHIP 966. HRESULT:0x80042611 The catalog item corresponds to an unknown type. UNKNOWN_CATALOG_TYPE 967. HRESULT:0x80042701 The geodatabase doesn’t support unmanaged raster catalogs. DOES_NOT_SUPPORT_UNMANAGED_RASTER_CATALOG 968. HRESULT:0x80042801 No spatial column present QUERYDESCRIPTION_NOSPATIALCOLUMN 969. HRESULT:0x80042802 Invalid column. QUERYDESCRIPTION_INVALIDCOLUMN 970. HRESULT:0x80042803 OID not a mapped column. QUERYDESCRIPTION_OIDNOTMAPPEDCOLUMN 971. HRESULT:0x80042804 Column exists. QUERYDESCRIPTION_COLUMNEXISTS 972. HRESULT:0x80042805 Invalid field type. QUERYDESCRIPTION_INVALIDFIELDTYPE 973. HRESULT:0x80042806 Oid mapped column has null value. QUERYTABLE_OIDMAPPEDCOLUMNHASNULL 974. HRESULT:0x80042807 Query description out of sync. QUERYDESCRIPTION_OUTOFSYNC 975. HRESULT:0x80042808 Fields used for OID mapping missing. QUERYDESCRIPTION_OIDFIELDSMISSING 976. HRESULT:0x80042809 Geometry type not supported. QUERYDESCRIPTION_INVALIDGEOMETRYTYPE 977. HRESULT:0x8004280A Failed to parse the where clause. QUERYCLASS_INVALIDWHERE 978. HRESULT:0x8004280B Oid value is unknown. QUERYCLASS_OIDUNKNOWN 979. HRESULT:0x8004280C Query missing. QUERYTABLE_QUERYMISSING 980. HRESULT:0x8004280D Workspace missing. QUERYTABLE_WORKSPACEMISSING 981. HRESULT:0x8004280E Oid column has null value. QUERYTABLE_OIDCOLUMNHASNULL 982. HRESULT:0x8004280F Geometry type is null geometry. QUERYCLASS_NULLGEOMETRYTYPE 983. HRESULT:0x80042810 Srid is invalid. QUERYCLASS_INVALIDSRID 984. HRESULT:0x80042811 Spatial reference is invalid. QUERYCLASS_INVALIDSPATIALREFERENCE 985. HRESULT:0x80042812 Class name is invalid. QUERYCLASS_INVALIDNAME 986. HRESULT:0x80042851 Unable to obtain origin primary key value. RELCLASS_COULD_NOT_GET_ORIG_PRIM_KEY 987. HRESULT:0x80042852 Unable to obtain origin foreign key value. RELCLASS_COULD_NOT_GET_ORIG_FOR_KEY 988. HRESULT:0x80042853 Unable to obtain destination primary key value. RELCLASS_COULD_NOT_GET_DEST_PRIM_KEY 989. HRESULT:0x80042854 Unable to obtain destination foreign key value. RELCLASS_COULD_NOT_GET_DEST_FOR_KEY 990. HRESULT:0x80042855 The relationship class is incompatible with an existing relationship class. RELCLASS_INCOMPATIBLE_WITH_EXISTING_RELCLASS 991. HRESULT:0x80042856 Cannot reset foreign keys for an existing relationship row. RELCLASS_CANNOT_RESET_FKEYS 992. HRESULT:0x80042857 Invalid foreign key value. RELCLASS_INVALID_FKEY 993. HRESULT:0x80042858 QueryDef-based search returned an invalid cursor. RELCLASS_INVALID_CURSOR 994. HRESULT:0x80042859 The relationship class was not found. RELATIONSHIPCLASS_NOT_FOUND 995. HRESULT:0x8004285A Invalid relationship class name. RELATIONSHIPCLASS_INVALID_NAME 996. HRESULT:0x8004285B The relationship class already exists. RELATIONSHIPCLASS_ALREADY_EXISTS 997. HRESULT:0x8004285C Invalid relationship class specification. RELATIONSHIPCLASS_INVALID_SPEC 998. HRESULT:0x8004285D Cannot open origin or destination class of this relationship class. RELATIONSHIPCLASS_ORIGIN_DEST_NOT_FOUND 999. HRESULT:0x8004285E The replace command cannot be completed because the attributed relationship row’s origin and/or destination class object does not exist. Ensure that both of the related objects are present before attempting to execute the replace with command. MISSING_ORIGIN_OR_DESTINATION_OBJECT 1000. HRESULT:0x80042901 The connectivity rule is invalid/malformed. INVALID_CONNECTIVITY_RULE 1001. HRESULT:0x80042902 Validation not supported on non-SQL datasets. VALIDATION_NOT_SUPPORTED 1002. HRESULT:0x80042903 The cardinality specified for the connectivity rule is invalid. INVALID_CARDINALITY 1003. HRESULT:0x80042904 Default junctions not supported in this release of the Geodatabase. DEFAULT_JUNCTIONS_NOT_SUPPORTED_IN_RELEASE 1004. HRESULT:0x80042905 Altering this type of validation rule not supported. ALTERING_RULE_NOT_SUPPORTED 1005. HRESULT:0x80042906 Connectivity rules are not supported on simple features. CONNECTIVITY_RULES_NOT_SUPPORTED 1006. HRESULT:0x80042907 Cannot alter a non-existant rule. CANNOT_ALTER_NON_EXISTANT_RULE 1007. HRESULT:0x80042908 Validation rule not found. RULE_NOT_FOUND 1008. HRESULT:0x80042951 Zero-length polylines not allowed. ZERO_LENGTH_POLYLINE 1009. HRESULT:0x80042952 Closed polylines not allowed. CLOSED_POLYLINE 1010. HRESULT:0x80042953 Junction feature does not have network ancillary role. NO_NETWORK_ANCILLARY_ROLE 1011. HRESULT:0x80042954 Flipping polylines not allowed. FLIPPED_POLYLINE 1012. HRESULT:0x80042955 Splitting junction features not allowed. CANNOT_SPLIT_JUNCTION 1013. HRESULT:0x80042956 Invalid network ancillary role. INVALID_NETWORK_ANCILLARY_ROLE 1014. HRESULT:0x80042957 Cannot add an orphan junction on top of an existing junction. CANNOT_ADD_ORPHAN_JUNCTION_ON_EXISTING_JUNCTION 1015. HRESULT:0x80042958 The specified junction index is invalid. INVALID_JUNCTION_INDEX 1016. HRESULT:0x80042959 Unable to set the enabled field associated with a network element. CANNOT_SET_ENABLED_FIELD 1017. HRESULT:0x8004295A Unable to set the weight field associated with a network element. CANNOT_SET_WEIGHT_FIELD 1018. HRESULT:0x8004295B An invalid type of geometry is being set into a complex junction. INVALID_GEOMETRY_FOR_COMPLEX_JUNCTION 1019. HRESULT:0x8004295C An invalid geometry type is associated with a network feature class. INVALID_GEOMETRY_TYPE_FOR_NETWORK_FEATURE_CLASS 1020. HRESULT:0x8004295D The network feature does not have an associated network element. NO_ASSOCIATED_NETWORK_ELEMENT 1021. HRESULT:0x8004295E The edge feature has the same from and to junctions. IDENTICAL_FROM_TO_JUNCTIONS 1022. HRESULT:0x8004295F The edge feature is missing either a from or to junction. EDGE_MISSING_ENDPOINT_JUNCTION 1023. HRESULT:0x80042960 The connected edge feature has invalid connectivity. CONNECTED_EDGE_INVALID_CONNECTIVITY 1024. HRESULT:0x80042961 A connected feature has inconsistent connectivity and cannot be corrected. INVALID_CONNECTIVITY_CANNOT_BE_CORRECTED 1025. HRESULT:0x80042962 Invalid network feature class. INVALID_NETWORK_FEATURE_CLASS 1026. HRESULT:0x80043001 The domain was not found. DOMAIN_NOT_FOUND 1027. HRESULT:0x80043002 The domain is used by an attribute rule. DOMAIN_USED_BY_ATTRIBUTE_RULE 1028. HRESULT:0x80043003 The domain is used as a default domain. DOMAIN_USED_AS_DEFAULT_DOMAIN 1029. HRESULT:0x80043004 Domain name already in use. DOMAIN_NAME_ALREADY_EXISTS 1030. HRESULT:0x80043005 The value of the domain exceeds the length of the field. DOMAIN_VALUE_EXCEEDS_FIELD_LENGTH 1031. HRESULT:0x80043006 The existing domain owner does not match that of the updated domain. DOMAIN_OWNER_DOESNT_MATCH 1032. HRESULT:0x80043007 The existing domain field type does not match that of the updated domain. DOMAIN_FIELD_TYPE_DOESNT_MATCH 1033. HRESULT:0x80043008 The domain type is not supported. DOMAIN_TYPE_NOT_SUPPORTED 1034. HRESULT:0x80043009 The value being added to the coded value domain already exists. CODED_VALUE_DOMAIN_VALUE_ALREADY_EXISTS 1035. HRESULT:0x8004300A Client cocreated domains may not be locked. CANNOT_LOCK_COCREATED_DOMAIN 1036. HRESULT:0x8004300B The domain is already used by another workspace. DOMAIN_USED_BY_OTHER_WORKSPACE 1037. HRESULT:0x8004300C The domain field type does not match that of the field it is being assigned to. DOMAIN_FIELD_TYPE_MISMATCH 1038. HRESULT:0x8004300D Domain may not be locked as the user is not the owner. CANNOT_LOCK_DOMAIN_AS_NOT_OWNER 1039. HRESULT:0x8004300E The specified default domain was not found. DEFAULT_DOMAIN_NOT_FOUND 1040. HRESULT:0x8004300F The domain record was not found. DOMAIN_RECORD_NOT_FOUND 1041. HRESULT:0x80043010 The existing domain type does not match that of the updated domain. DOMAIN_TYPE_DOESNT_MATCH 1042. HRESULT:0x80043011 The name of an entry in the coded value domain is empty. CODED_VALUE_DOMAIN_NAME_EMPTY 1043. HRESULT:0x80043012 The value is not compatible with the field types associated with the coded value domain. CODED_VALUE_DOMAIN_VALUE_NOT_COMPATIBLE 1044. HRESULT:0x80043013 The value type is inconsistent with other associated value types in the coded value domain. CODED_VALUE_DOMAIN_VALUE_INCONSISTENT 1045. HRESULT:0x80043014 The field type is not compatible with the associated value types in the coded value domain. CODED_VALUE_DOMAIN_FIELD_TYPE_NOT_COMPATIBLE 1046. HRESULT:0x80043015 The domain cannot be deleted. CANNOT_DELETE_DOMAIN 1047. HRESULT:0x80043016 The domain name is invalid. DOMAIN_INVALID_NAME 1048. HRESULT:0x80043017 The domain definition is different from the domain of the same name in the workspace. DOMAIN_DOES_NOT_MATCH_WORKSPACE 1049. HRESULT:0x80043018 The domain is incompatible with the existing default value. DOMAIN_INCOMPATIBLE_WITH_DEFAULT_VALUE 1050. HRESULT:0x80043019 The process has timed out while waiting for traffic update downloads. TRAFFIC_DOWNLOAD_TIMEOUT 1051. HRESULT:0x8004301A An error was encountered connecting to the dynamic traffic data. Verify that the network dataset’s Traffic Feed property is correctly set and that you have access to this location. REFRESH_DYNAMIC_TRAFFIC_ERROR 1052. HRESULT:0x80043051 Invalid name object. INVALID_NAME_OBJECT
GIS开发进阶之路(十四) ArcEngine打开cad文件的五种方法、ArcGIS Engine错误码
最新推荐文章于 2023-08-24 10:12:52 发布
569

被折叠的 条评论
为什么被折叠?



