上一页 1 ··· 199 200 201 202 203 204 205 206 207 ··· 215 下一页
摘要: Move 移动 1、将选定的静态函数从一个类移动到另一个类 2、将选中的类或接口移动到其他单元 Extract Interface 抽取接口 将选定的函数抽取到一个新的接口中 Extract Superclass 抽取基类 ... 阅读全文
posted @ 2007-12-17 23:21 万一 阅读(6677) 评论(1) 推荐(0) 编辑
摘要: unit Unit1;interfaceuses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls;type TForm1 = class(TForm) ... 阅读全文
posted @ 2007-12-17 22:48 万一 阅读(23158) 评论(15) 推荐(4) 编辑
摘要: GetCursorPos; //获取 SetCursorPos; //设置 ClientToScreen; //转换 ScreenToClient; //转换 阅读全文
posted @ 2007-12-17 18:08 万一 阅读(2018) 评论(0) 推荐(0) 编辑
摘要: unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, ExtCtrls; type TForm1 = class(TForm) RadioGroup1: TRadioGroup; ... 阅读全文
posted @ 2007-12-17 16:38 万一 阅读(3878) 评论(7) 推荐(0) 编辑
摘要: unit Unit1; interface uses Classes, Controls, Forms, Dialogs, StdCtrls; type TForm1 = class(TForm) Button1: TButton; procedure Button1Click(Sender: TObject); end; TBase = class ... 阅读全文
posted @ 2007-12-17 13:43 万一 阅读(4462) 评论(38) 推荐(0) 编辑
摘要: free 并不能将对象置为 nil 阅读全文
posted @ 2007-12-17 13:26 万一 阅读(2697) 评论(1) 推荐(0) 编辑
摘要: var w: WideString; i: Integer; s: string; List: TStringList; begin List := TStringList.Create; for i := $4e00 to $9fa5 do begin s := #36 + IntToHex(i,4); {#36 是 $ 字符} w := Wide... 阅读全文
posted @ 2007-12-15 22:09 万一 阅读(7804) 评论(2) 推荐(0) 编辑
摘要: JavaScript版本测试 阅读全文
posted @ 2007-12-15 10:05 万一 阅读(1791) 评论(0) 推荐(0) 编辑
摘要: WebBrowser1.GoHome; //到浏览器默认主页WebBrowser1.Refresh; //刷新WebBrowser1.GoBack; //后退WebBrowser1.GoForward; //前进WebBrowser1.Navigate('...'); //打开指定页面WebBrowser1.Navigate('about:blank'); //打开空页面//打开空页面, 并写入...WebBrowser1.Navigate('about:<head><title>标题</title><body& 阅读全文
posted @ 2007-12-13 16:16 万一 阅读(42428) 评论(117) 推荐(4) 编辑
摘要: //类单元 unit Person; interface type TPerson = class(TObject) private FName: string; FAge: Integer; public procedure SetName(const strName: string); procedure SetAge(const intAge... 阅读全文
posted @ 2007-12-13 15:30 万一 阅读(4164) 评论(5) 推荐(0) 编辑
上一页 1 ··· 199 200 201 202 203 204 205 206 207 ··· 215 下一页