摘要:
begin#158D2A18E9B7021D6E868C6D71F4393DDE6FCC04C144169F9943F1CC0DD20EDE6C3D575E6A2FC9A0C9B3621A6C2E396166BDC320D5970450CF600F9A7B4EDBE65ED417D2A3107C9D 阅读全文
2016年1月17日
2015年10月29日
摘要:
procedure TForm1.WebBrowser1NewWindow2(Sender: TObject; var ppDisp: IDispatch; var Cancel: WordBool);begin ppDisp := WebBrowser2.Application; Cancel :... 阅读全文
2015年5月28日
2015年1月7日
摘要:
var gStart, gLength, gCol: Integer;procedure SetRichEdit(aRichEdit: TRichEdit);var fRow, fCol: Integer; fStart, fLength, tStart: Integer;begin fRow :=... 阅读全文
2014年10月11日
2014年8月18日
2014年7月28日
摘要:
unit Unit1;interfaceuses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs;type TForm1 = class(TForm) procedure Form... 阅读全文
摘要:
这是一个简单、方便而又实用的小技巧. 譬如这段代码中有四个定义函数: MyAdd、MyDec、MyMul、MyDivunit Unit1;interfaceuses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls,... 阅读全文
2014年7月25日
2014年7月24日
摘要:
function GetExeSize: Int64;var SearchRec: TSearchRec;begin Result := -1; if FindFirst(Application.ExeName, faAnyFile, SearchRec) = 0 then Result := S... 阅读全文