Информатика. Программирование в Delphi
76
Рис. 4.15 Рис. 4.16
В листинге 4.1 отражены все наши предыдущие действия.
Листинг 4.1
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dia-
logs, StdCtrls;
type
TForm1 = class(TForm)
Label1: TLabel;
Button1: TButton;
Button2: TButton;
procedure FormCreate(Sender: TObject);
procedure Button1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
I...,66,67,68,69,70,71,72,73,74,75 77,78,79,80,81,82,83,84,85,86,...370