摘要: 1、Bios中的satadata设置开启2账户和密码最好与本机相同 阅读全文
posted @ 2015-01-27 18:12 毛小亮 阅读(391) 评论(0) 推荐(0) 编辑
摘要: 1、某个系统服务没开启2、默认浏览器设置为IE。(IE内核有时候也不能调试)3、BIOS里面的SATA设置为开启。 阅读全文
posted @ 2015-01-27 15:55 毛小亮 阅读(159) 评论(0) 推荐(0) 编辑
摘要: public partial class FrmAttributeTable : Form { private AxMapControl m_MapCtl; public FrmAttributeTable(AxMapControl pMapCtl) ... 阅读全文
posted @ 2015-01-21 16:43 毛小亮 阅读(291) 评论(0) 推荐(0) 编辑
摘要: private void 处理面积ToolStripMenuItem_Click(object sender, EventArgs e) { pLayer = axMapControl2.get_Layer(0); pFLayer = p... 阅读全文
posted @ 2015-01-21 15:27 毛小亮 阅读(159) 评论(0) 推荐(0) 编辑
摘要: private void 合并1500图斑ToolStripMenuItem_Click(object sender, EventArgs e) { /* *将图层中面积小于1500的图斑与之相同BSM且相邻的最大的图斑合并。 ... 阅读全文
posted @ 2015-01-21 15:25 毛小亮 阅读(265) 评论(0) 推荐(0) 编辑
摘要: 1、插入/// ///向featureclass中批量插入features ,批量插入features,用buffer的方法,要比循环一个个Store的方法快////// 操作数据所在的IFeatureClassprivate void InsertFeatures( IFeatureClass p... 阅读全文
posted @ 2015-01-21 15:23 毛小亮 阅读(386) 评论(0) 推荐(0) 编辑
摘要: private void 复制ToolStripMenuItem_Click(object sender, EventArgs e) { int layercount = axMapControl2.LayerCount; if (layer... 阅读全文
posted @ 2015-01-21 15:08 毛小亮 阅读(384) 评论(0) 推荐(0) 编辑
摘要: if(axMapControl2.LayerCount<=0) { MessageBox.Show("请加载图层后使用该功能","系统提示",MessageBoxButtons.OK,MessageBoxIcon.Warning); ... 阅读全文
posted @ 2015-01-17 13:59 毛小亮 阅读(531) 评论(0) 推荐(0) 编辑
摘要: 刚学AE,其中很多概念都模糊不清。经过一段时间的摸索总结,对FeatureLayer,FeatureDataset,FeatureClass,Feature几个概念有了一点认识。拿出来分享一下,有错误的请多多指教,共同进步.FeatureLayer:要素图层,承载要素数据。几个重要的接口如下:IFe... 阅读全文
posted @ 2015-01-17 09:21 毛小亮 阅读(403) 评论(0) 推荐(0) 编辑
摘要: 这里主要是复习DataSet等数据或ADO.NET方面的知识。下面是一个简单的数据存储(在DataGridView上增加一行然后并存储到数据库的过程):private void button1_Click(object sender, EventArgs e) { //插入一行内容 SqlConne... 阅读全文
posted @ 2014-11-26 07:23 毛小亮 阅读(488) 评论(0) 推荐(0) 编辑