//ListView删除选中的多项目function DeleteMultSelItems(ListView:TListView):Boolean;varI: Integer;beginResult:=False;if ListView.Selected =nil then Exit;for i :...
分类:
其他好文 时间:
2014-07-29 21:19:22
阅读次数:
204
//获得汉字字符个数function ChineseWordsCount(text:string):Integer;var i,sum,e,c,t: Integer;begin Result:=0; c := 0; sum := Length(text); if Sum=0 then exit; f...
分类:
其他好文 时间:
2014-07-29 21:14:32
阅读次数:
211
Activity.finish():Call this when your activity is done and should be closed. 在你的activity动作完成的时候,或者Activity需要关闭的时候,调用此方法。 当你调用此方法的时候,系统只是将最上面的Acti...
分类:
其他好文 时间:
2014-07-29 21:12:32
阅读次数:
214
下午检查apahe的error_log的时候发现大量:[TueJul2914:35:392014][notice]childpid22397exitsignalSegmentationfault(11)[TueJul2914:35:422014][notice]childpid22548exitsignalSegmentationfault(11)[TueJul2914:35:452014][notice]childpid22540exitsignalSegmentationfaul..
分类:
其他好文 时间:
2014-07-29 18:25:23
阅读次数:
230
if not Assigned(cxDBTreeList1.FocusedNode) then Exit;
// 上移方法:
with cxDBTreeList1 do
FocusedNode.MoveTo(FocusedNode.getPrevSibling, tlamInsert);
// 下移方法:
with cxDBTreeList1 do...
分类:
其他好文 时间:
2014-07-29 14:55:18
阅读次数:
218
def singleton(lock): try: fcntl.flock(lock, fcntl.LOCK_EX | fcntl.LOCK_NB) except: print 'ho' exit(0)在guyang的util.py中的一段代码....
分类:
编程语言 时间:
2014-07-29 14:12:38
阅读次数:
212
常见错误描述:Apple Mach-O Linker Error这类错误的错误信息最后一行通常如下:Command /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/clang failed with exit code 1发生这种错误...
分类:
移动开发 时间:
2014-07-28 23:46:44
阅读次数:
294
java.io.FileNotFoundException: class path resource [beans.xml] cannot be opened because it does not exit.
在用maven管理的spring项目中做单元测试时候,加载不了spring的配置文件。出现该问题的原因是,用maven创建的项目,必须把spring的配置文件beans.xml或者app...
分类:
编程语言 时间:
2014-07-28 15:56:13
阅读次数:
187
1. 如何将用户添加到sudoer列表中:chmod +w /etc/sudoers echo 'mirandam ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers chmod -w /etc/sudoers exit 2. For循环的例子:// 压缩当前目录下所有后...
分类:
系统相关 时间:
2014-07-28 15:21:13
阅读次数:
255
EnterfullpathnameofshellorRETURNfor/bin/sh:再按Enter进入单用户模式,所示#挂载档案系统,输入#fsck-p\\文件档案检查#mount-u/\\挂载#mount-tufs-a\\挂载所有文件档案更改密码#passwd\\更改密码Newpassword:Retypenewpassword:passwd:updatingthedatabase...passwd:done#exit\..
分类:
其他好文 时间:
2014-07-28 00:44:11
阅读次数:
220