上一页 1 ··· 5 6 7 8 9
摘要: unit Unit1;interfaceuses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls;type TForm1 = class(TForm) Label1: TLabel; Label2: TLabel; Label3: TLabel; Edit1: TEdit; Edit2: TEdit; Edit3: TEdit; Button1: TButton; procedure Button1Cli... 阅读全文
posted @ 2011-12-02 17:44 endsnow 阅读(590) 评论(0) 推荐(0)
摘要: unit Unit1;interfaceuses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls;type TForm1 = class(TForm) Label1: TLabel; Button1: TButton; Button2: TButton; procedure Button1Click(Sender: TObject); procedure Button2Click(Sender: TObject); pr... 阅读全文
posted @ 2011-12-02 16:46 endsnow 阅读(143) 评论(0) 推荐(0)
摘要: 主窗体BorderStyle改为bsDialog。 阅读全文
posted @ 2011-12-02 16:32 endsnow 阅读(116) 评论(0) 推荐(0)
摘要: unit Unit1;interfaceuses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls;type TForm1 = class(TForm) Button1: TButton; procedure Button1Click(Sender: TObject); private { Private declarations } public { Public declarations } end;var Form1... 阅读全文
posted @ 2011-12-02 16:20 endsnow 阅读(156) 评论(0) 推荐(0)
摘要: unit Unit1;interfaceuses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls;type TForm1 = class(TForm) Label1: TLabel; Label2: TLabel; Edit1: TEdit; Edit2: TEdit; Button1: TButton; procedure Edit1Change(Sender: TObject); procedure But... 阅读全文
posted @ 2011-12-02 15:56 endsnow 阅读(199) 评论(0) 推荐(0)
摘要: unit Unit1;interfaceuses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls;type TForm1 = class(TForm) Button1: TButton; Button2: TButton; Button3: TButton; procedure Button1Click(Sender: TObject); procedure Button2Click(Sender: TObject); ... 阅读全文
posted @ 2011-12-02 15:27 endsnow 阅读(239) 评论(0) 推荐(0)
摘要: unit Unit1; //单元文件名interface //接口关键字,用它来标识文件所调用的单元文件uses //使用的公共单元 Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs;type //定义程序所使用的组件以及组件所对应的事件 TForm1 = class(TForm) priva... 阅读全文
posted @ 2011-12-01 15:51 endsnow 阅读(192) 评论(0) 推荐(0)
上一页 1 ··· 5 6 7 8 9