2016年11月3日
摘要:
保存成batchname.bat,放到要修改文件的目录下运行就行。
阅读全文
posted @ 2016-11-03 23:06
janehlp
阅读(294)
推荐(0)
2016年10月29日
摘要:
DevExpress10.2.4支持vs2010,安装vs2010或找一台装有vs2010的机器安装DevExpress10.2.4 执行DevExpress10.2.4的工具ToolboxCreator 打开vs2010,工具箱显示控件,通过vs的"导入导出设置"功能将设置导出来 然后打开vs20
阅读全文
posted @ 2016-10-29 23:08
janehlp
阅读(568)
推荐(0)
2016年10月13日
摘要:
将datatable输出到word,执行如下代码。 doc.MailMerge.ExecuteWithRegions(outDt); 执行完后发现第一列含前缀空格的字段值,空格字符被自动清除了。 解决办法: 输出前处理datatable需要含前缀空格的字段,将半角空格替换成全角空格就行。
阅读全文
posted @ 2016-10-13 12:24
janehlp
阅读(1141)
推荐(0)
2016年9月7日
摘要:
ISpatialReferenceFactory3 spatialReferenceFactory = new SpatialReferenceEnvironmentClass(); outSR = spatialReferenceFactory.CreateSpatialReference(sr.
阅读全文
posted @ 2016-09-07 22:18
janehlp
阅读(491)
推荐(0)
2016年8月13日
摘要:
关于WKID的几点说明 1.ArcGIS Server 10中: EPSG 3857 WGS_1984_Web_Mercator_Auxiliary_Sphere ESRI 102113 WGS_1984_Web_Mercator 2.ArcGIS Server 9.3.1中: ESRI 10210
阅读全文
posted @ 2016-08-13 21:10
janehlp
阅读(1515)
推荐(0)
摘要:
SpatiaLite 生成的数据库,3.0版本与4.0版本的表geometry_columns结构发生变化。 这是3.0版本的结构: 这是4.0版本的结构: 主要差别是type和coord_dimension。
阅读全文
posted @ 2016-08-13 21:10
janehlp
阅读(472)
推荐(0)
2016年8月10日
摘要:
问题: I have a ListView that's using a custom adapter. I want to dynamically add/remove items from the ListView. I've tried everything inside the getVie
阅读全文
posted @ 2016-08-10 00:35
janehlp
阅读(195)
推荐(0)
2016年8月9日
摘要:
地块小班图形的坐标系为Xian 1980,在不同投影下的面积: Xian 1980 GK CM 123E :面积=117728平方米Xian 1980 3 Degree GK CM 123E :面积=117728平方米 Beijing 1954 GK Zone 21N :面积=117732平方米 W
阅读全文
posted @ 2016-08-09 21:18
janehlp
阅读(2183)
推荐(0)
2016年8月8日
摘要:
在不同的遍历写法中,推荐使用如下写法,其效率略高一些: 遍历key+value 遍历key 遍历value
阅读全文
posted @ 2016-08-08 20:22
janehlp
阅读(245)
推荐(0)
2016年8月7日
摘要:
使用Linearlayout本来利用父控件的gravity属性是很好解决的。但是对应RelativeLayout虽然有 gravity属性,但是如果你使用,你会发现实际他是不能生效的。 解决办法: 在RelativeLayout的子空间里,使用以下3个属性就行了。 android:layout_ce
阅读全文
posted @ 2016-08-07 17:09
janehlp
阅读(586)
推荐(0)