b. Desain Form
c. Desain Properties
Object | Name | Caption |
---|---|---|
Label1 | Label1 | Nama |
Label2 | Label2 | Alamat |
Label3 | Label3 | Label3 |
Label4 | Label4 | Label4 |
Button1 | Button1 | Close |
Form1 | Form1 | Biodata |
d. Listing Program
procedure TForm1.FormCreate(Sender: TObject);
begin
label3.Caption:= 'Jujun Jojon';
label4.Caption:= 'Dapur Rumah Tetangga';
end;
procedure TForm1.Button1Click(Sender: TObject);
begin
close;
end;
No comments:
Post a Comment