-
Notifications
You must be signed in to change notification settings - Fork 0
/
UCadastro.pas
195 lines (159 loc) · 4.26 KB
/
UCadastro.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
unit UCadastro;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.DBCtrls, Vcl.StdCtrls, Vcl.Buttons,
Vcl.Mask, Data.DB;
type
Tfrm_cadastro = class(TForm)
DataSource1: TDataSource;
Label2: TLabel;
dbeNome: TDBEdit;
Label3: TLabel;
dbeTelefone: TDBEdit;
Label4: TLabel;
dbeEmail: TDBEdit;
btnCadastro: TBitBtn;
meTelefone: TMaskEdit;
Label1: TLabel;
procedure FormShow(Sender: TObject);
procedure btnCadastroClick(Sender: TObject);
procedure meTelefoneChange(Sender: TObject);
procedure FormClose(Sender: TObject; var Action: TCloseAction);
private
{ Private declarations }
public
{ Public declarations }
function verificar(nome, tel, email: String):Boolean;
var
msg: String;
end;
var
frm_cadastro: Tfrm_cadastro;
valida: Boolean;
implementation
{$R *.dfm}
uses UInicio;
procedure Tfrm_cadastro.btnCadastroClick(Sender: TObject);
var
nome, email, tel: String;
begin
nome := dbeNome.Text;
tel := meTelefone.Text;
email := dbeEmail.Text;
valida := verificar(nome, tel, email);
if(valida=true)then
begin
msg := 'Verifique os dados: '
+ sLineBreak + 'Nome: ' + nome
+ sLineBreak + 'E-mail: ' + email
+ sLineBreak + 'Telefone: ' + tel;
// Mostra uma mensagem de confirmação para o usuário.
// Se ele clicar em sim, o registro é armazenado no
// banco de dados. Se clicar em não, o DataSource sai
// do modo de novo registro.
if(MessageBox(Application.Handle, pChar(msg), 'Confirmar', MB_YESNO) = ID_YES) then
begin
DataSource1.DataSet.Post;
UInicio.frm_inicio.btnEditar.Enabled := True;
UInicio.frm_inicio.btnExcluir.Enabled := True;
meTelefone.Text := '';
frm_cadastro.Close;
end
else
begin
DataSource1.DataSet.Cancel;
end;
end
else
begin
MessageBox(Application.Handle, pChar(msg), 'Erro', MB_OK + MB_ICONWARNING);
end;
end;
procedure Tfrm_cadastro.FormClose(Sender: TObject; var Action: TCloseAction);
begin
DataSource1.DataSet.Cancel;
end;
procedure Tfrm_cadastro.FormShow(Sender: TObject);
begin
// Assim que o formulário abrir, o DataSource muda seu
// modo para adicionar mais um registro, através do
// procedure Append.
DataSource1.DataSet.Append;
dbeTelefone.Visible := False;
end;
procedure Tfrm_cadastro.meTelefoneChange(Sender: TObject);
begin
dbeTelefone.Text := meTelefone.Text;
end;
function Tfrm_cadastro.verificar(nome, tel, email: String): Boolean;
var
aux: String;
begin
Result := True;
aux := '';
if(nome=null)then
begin
nome := '';
end;
if(email=null)then
begin
email := '';
end;
msg := 'Corrija os erros citados: ' + sLineBreak;
{
Aqui são verificado os erros que possivelmente
os usuários podem fazer em relação aos campos
}
if (nome.Length<2) and (nome<>'') then
begin
Result := false;
msg := msg + '- Não existe nome com apenas um caracter' + sLineBreak;
end;
//f
if (nome='') then
begin
Result := false;
msg := msg + '- Nada foi digitado no campo nome' + sLineBreak;
end
else
begin
aux := nome[1];
if not(strToIntDef(aux, 1000) = 1000) then
begin
Result := false;
msg := msg + '- Não comece o campo nome com número' + sLineBreak;
end;
end;
//f
if(nome.Length>80) then
begin
Result := False;
msg := msg + '- O nome deve ter menos de 80 caracteres' + sLineBreak;
end;
//f
if(email.Length>256) then
begin
Result := false;
msg := msg + '- O E-mail não pode ter mais 256 caracteres' + sLineBreak;
end;
if(tel='( ) - ')then
begin
Result := false;
msg := msg + '- Campo Telefone está vazio' + sLineBreak;
end;
if(email='')then
begin
Result := false;
msg := msg + '- Campo E-mail está vazio' + sLineBreak;
end
else
begin
if not((email.Contains('@')) and (email.Contains('.com'))) then
begin
Result := false;
msg := msg + '- Endereço de E-mail inválido' + sLineBreak;
end;
end;
end;
end.