得到grid的总行数 gridView1.RowCount得到grid当前选中行 gridView1.GetFocusedDataRow()得到当前选中行的某一列的值 gridView1.GetFocusedDataRow()[列序号]奇偶行变色,添加gridView1.OptionsView.En...
分类:
其他好文 时间:
2014-07-16 20:04:59
阅读次数:
185
假设我们定义了一个变量为:file=/dir1/dir2/dir3/my.file.txt可以用${ }分别替换得到不同的值:${file#*/}:删掉第一个/及其左边的字符串:dir1/dir2/dir3/my.file.txt${file##*/}:删掉最后一个/ 及其左边的字符串:my.fil...
分类:
其他好文 时间:
2014-07-16 20:02:32
阅读次数:
175
来自豆瓣:http://www.douban.com/note/347831403/2014年最新中国手机号段大全2014-04-28 10:46:56 【最新中国手机号段大全】移动:134、135、136、137、138、139、150、151、152、157、158、159、182、183、18...
分类:
移动开发 时间:
2014-07-16 20:02:24
阅读次数:
189
1:身份证格式:自定义->输入###################2:日期格式: Text(A2:,"yyyy-mm-dd")3:取消公式:ctrl+c .ctrl+v会出现一个小工具,下拉选择粘贴值(仅有值)4:INDEX函数 主要功能:返回列表或数组中的元素值,此元素由行序号和列序号的索引.....
分类:
其他好文 时间:
2014-07-16 20:01:26
阅读次数:
186
//获得类类型的两种方式1、 Class cls1 = Role.class; 2、 Class cls2 = Class.forName("yui.Role"); 注意第二种方式中,forName中的参数一定是完整的类名(包名+类名),并且这个方法需要捕获异常。 现在得到cls1就可以创建一个.....
分类:
其他好文 时间:
2014-07-16 19:48:03
阅读次数:
146
1. arm-linux-gcc:http://download.csdn.net/download/zlyong0018/46463772. adb makefile:https://gist.github.com/splhack/9583353. 修改CC为arm-linux-gcc4. mak...
分类:
数据库 时间:
2014-07-16 19:46:25
阅读次数:
190
#查看log,获取版本号 git log#本地仓库回退到某个版本 git reset --hard baeertasdasdvf#新建需要回退的版本old_master分支做备份 git branch old_master #push到远程 git push origin old_mas...
分类:
其他好文 时间:
2014-07-16 19:46:01
阅读次数:
203
var str='1250' ; alert( Number(str) ); //得到1250 alert(parseInt(str)); //得到1250var str1='00100'; alert( Number(str1) ); //得到100 alert(parseInt(str1)...
分类:
Web程序 时间:
2014-07-16 19:45:21
阅读次数:
151
?、采用类似匈牙利命名法为控件命令,对于其他变量申明则不需要了e.g. Button btnAdd;e.g. TextBox txtUsername;e.g. ListBox lstFileNames;e.g. Panel panelInfo;?、对于函数参数、局部变量、私有及受保护字段的命名采用C...
分类:
其他好文 时间:
2014-07-16 19:44:34
阅读次数:
160
用于打印杨辉三角的程序,有多种算法仅提供一种PRogram yh (input,ouput);var m,n,c:integer;BeginFor m:=0 TO 10 Do Begin c:=1; write(c:40-3*m); For n:=1 To m Do begin c:=c+(m-n+...
分类:
其他好文 时间:
2014-07-16 19:38:04
阅读次数:
148