-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuFrmPrincipal.pas
77 lines (61 loc) · 1.53 KB
/
uFrmPrincipal.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
unit uFrmPrincipal;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants,
System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Vcl.ExtCtrls, uPessoa;
type
TFrmPrincipal = class(TForm)
PFundo: TPanel;
EdtNome: TEdit;
EdtCpf: TEdit;
EdtIdade: TEdit;
LNome: TLabel;
LCpf: TLabel;
LIdade: TLabel;
BtnCadastrar: TButton;
BtnListar: TButton;
LTitulo: TLabel;
MDados: TMemo;
procedure BtnCadastrarClick(Sender: TObject);
procedure BtnListarClick(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
VetorPessoa: array of Tpessoa;
FrmPrincipal: TFrmPrincipal;
Pessoa: Tpessoa;
Tamanho: integer = 0;
implementation
{$R *.dfm}
procedure TFrmPrincipal.BtnCadastrarClick(Sender: TObject);
begin
try
Pessoa := Tpessoa.Create;
Pessoa.nome := EdtNome.Text;
Pessoa.cpf := EdtCpf.Text;
Pessoa.idade := StrToInt(EdtIdade.Text);
Tamanho := Tamanho + 1;
SetLength(VetorPessoa, Tamanho);
VetorPessoa[Tamanho - 1] := Pessoa;
MDados.Lines.Add('O usuário ' + Pessoa.nome + ' foi cadastrado!');
finally
end;
end;
procedure TFrmPrincipal.BtnListarClick(Sender: TObject);
var
i: integer;
begin
MDados.Lines.Add('');
for i := 0 to Tamanho - 1 do
begin
Pessoa := VetorPessoa[i];
MDados.Lines.Add('');
MDados.Lines.Add('Nome: ' + Pessoa.nome + #13#10 + 'CPF: ' + Pessoa.cpf +
#13#10 + 'Idade: ' + IntToStr(Pessoa.idade));
end;
end;
end.