unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, jpeg, ExtCtrls, StdCtrls; type TForm1 = class(TForm) Label1: TLabel; Label2: TLabel; Label3: TLabel; Label4: TLabel; Label5: TLabel; Label6: TLabel; Button1: TButton; Button2: TButton; Image1: TImage; Image2: TImage; procedure Button1Click(Sender: TObject); procedure Button2Click(Sender: TObject); private { Private declarations } public { Public declarations } end; var Form1: TForm1; implementation {$R *.dfm} procedure TForm1.Button1Click(Sender: TObject); begin {Портретная фотография становится видимой} Image1.Visible:=True; {Художественная фотография становится невидимой} Image2.Visible:=False; end; procedure TForm1.Button2Click(Sender: TObject); begin {Портретная фотография становится невидимой} Image1.Visible:=False; {Художественная фотография становится видимой} Image2.Visible:=True; end; end. - это и есть код программы его надо в WOrd вставлять?