Loading

上一页 1 ··· 4 5 6 7 8 9 10 下一页
摘要: ```sql --查看版本 select * from versions --表注册信息表 select * from table_registry --STATES表包含状态元数据,它指示一段时间内创建的状态, --还有每个状态的创建时间、关闭时间、父状态以及所有者。 --每创建一个状态,都会指定状态ID并且会在该表中添加一条记录。 --用户的每一个编辑行为都会以一个状态ID来表示。 selec 阅读全文
posted @ 2019-09-29 08:57 F(x)_King 阅读(219) 评论(0) 推荐(0) 编辑
摘要: AcDbObjectPointer AcDbSymbolTablePointer AcDbSymbolTableRecordPointer 例子 Automatic closing of AutoCAD objects withObjectARX SmartPointers(用 ObjectARX的 阅读全文
posted @ 2019-09-19 18:11 F(x)_King 阅读(1045) 评论(0) 推荐(0) 编辑
摘要: 这里以Visual Studio 2010(以下简称VS)+AutoCAD 2012(以下简称ACAD)为例,高版本的AutoCAD 可参考操作。 准备工作 首先,你得准备如下软件和开发包:VS 和ACAD(这不是废话嘛),然后是ObjectARX SDK 2012。 下面是详细的配置过程。 1. 阅读全文
posted @ 2019-09-19 16:53 F(x)_King 阅读(1818) 评论(0) 推荐(0) 编辑
摘要: ```c /// /// 打开dbf表 /// /// /// /// public static ITable OpenTable(string pathName, string tableName) { // Create the workspace name object. IWorkspac 阅读全文
posted @ 2019-09-17 10:55 F(x)_King 阅读(446) 评论(0) 推荐(0) 编辑
摘要: 获得要素图层通过UID获取 通过IMap 递归遍历要素 c /// /// 获得要素图层 /// /// IMap对象 /// public List GetFeatureLayers(IMap pMap) { //遍历地图(需要递归判断) for (int i = 0; i /// 执行得到所有图 阅读全文
posted @ 2019-08-16 16:38 F(x)_King 阅读(720) 评论(0) 推荐(0) 编辑
摘要: 一.GB2312和UTF 8互转 二.UTF8和GBK互转 三.UTF8和ANSI互转 四.UTF 8 和 CString 互相转换 c++ char CreateUTF8TextInitWithString(CString strValue) { char buffer = NULL; int l 阅读全文
posted @ 2019-08-14 17:05 F(x)_King 阅读(432) 评论(0) 推荐(0) 编辑
摘要: 原文链接:https://www.ibm.com/developerworks/cn/web/1306_jiangjj_jsinstanceof/ instanceof 运算符简介 ​ 在 JavaScript 中,判断一个变量的类型尝尝会用 typeof 运算符,在使用 typeof 运算符时采用 阅读全文
posted @ 2019-08-14 09:35 F(x)_King 阅读(145) 评论(0) 推荐(0) 编辑
摘要: 要素转要素 阅读全文
posted @ 2019-08-08 16:04 F(x)_King 阅读(413) 评论(0) 推荐(0) 编辑
摘要: 问题: Arcgis10.0 组件初始化失败 解决方法: ESRI.ArcGIS.RuntimeManager.BindLicense(ESRI.ArcGIS.ProductCode.EngineOrDesktop);该语句需要引用ESRI.ArcGIS.Version类库 问题: 无嵌入互操作类 阅读全文
posted @ 2019-08-08 10:34 F(x)_King 阅读(796) 评论(0) 推荐(1) 编辑
摘要: 原文链接:https://blog.csdn.net/kone0611/article/details/78530514 IFeatureClass.CreateFeature ​ 在这种方法最后需要加上IFeature.Store去提交创建的要素,本人认为这种方法相比下面一种方法更好些,因为Sto 阅读全文
posted @ 2019-08-08 10:12 F(x)_King 阅读(956) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 下一页