TControl = class(TComponent) // 控件的Windows功能从TControl开始property Caption: TCaption read GetText write SetText stored IsCaptionStored; property Text:... Read More
posted @ 2015-08-23 01:31 findumars Views(1688) Comments(0) Diggs(0)
ddd Read More
posted @ 2015-08-22 22:27 findumars Views(208) Comments(0) Diggs(0)
exp 正则表达式30分钟入门教程 http://deerchao.net/tutorials/regex/regex.htm 元字符 .*^\d\b\s,当然还有\,还有中括号[] .是一个元字符,匹配除了换行符以外的任意字符。 *同样是元字符,.*连在一起就意味着任意数量的不包含换行的字符。 这 Read More
posted @ 2015-08-22 00:19 findumars Views(2493) Comments(0) Diggs(0)
Delphi遍历进程中所有Class的TypeInfo,即便是在implementation中的class或者其他 class的private的子class. 一般普通EXE中的TypeInfo存放在PAGE_EXECUTE_*的内存中,而BPL则存放在PAGE_READ_WRITE的内存中... Read More
posted @ 2015-08-21 20:51 findumars Views(1104) Comments(0) Diggs(0)
VCL存在一些非API消息以供其内部使用,为什么要这样做呢?这要从WM_COMMAND & WM_NOTIFY消息说起,我们说WM_COMMAND消息并不是直接发给实际产生消息的窗体,而是发送到它的父窗体。但是父窗体几乎不可能用通常方法处理这些根本不知道如何处理的消息,于是父窗体把这个消息加上CN_... Read More
posted @ 2015-08-21 20:37 findumars Views(469) Comments(0) Diggs(0)