This repository has been archived by the owner on Aug 24, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
limparforms.pas
92 lines (80 loc) · 2.11 KB
/
limparforms.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
unit LimparForms;
{$mode objfpc}{$H+}
interface
uses Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, StdCtrls,
ComCtrls;
var tela : Integer;
function limparTelaLogin():Integer;
function limparDadosUsuario():Integer;
function limparTelaInsirirNotas():Integer;
function exibirTela(tela :Integer): Integer;
function limparFormTransferencia():Integer;
function limparFormDeposito():Integer;
implementation
uses telaLogin, dadosUsuario, telaInicial, telaInseriNotas, FuncoesDeTransferencia, telaTransferencia, telaDeposito;
function limparTelaLogin():Integer;
begin
Form2.edInserirSenha.Text := '';
Form2.edInsirirNCartao.Text := '';
end;
function limparDadosUsuario():Integer;
begin
nCartaoUsuario:='';
nConta:='';
nomeUsuario:='';
dataNascUsuario:='';
saldoUsuario:='';
cpfUsuario:='';
nomeContaDestino:='';
dataNascContaDestino:='';
cpfContaDestino:='';
numeroContaDestino:='';
saldoContaDestino:='';
end;
function limparTelaInsirirNotas: Integer;
begin
frInserirNotas.edAddNota100.Text :='0';
frInserirNotas.edAddNota50.Text :='0';
frInserirNotas.edAddNotas20.Text :='0';
frInserirNotas.edAddNotas10.Text :='0';
frInserirNotas.edAddNotas5.Text :='0';
frInserirNotas.edAddNotas2.Text :='0';
end;
function exibirTela(tela :Integer): Integer;
begin
case tela of
1:begin
Result := 1; //saque
//tela:=0;
end;
2:begin
Result := 2;//transferencia
// tela:=0;
end;
3:begin
Result := 3;//Deposito
//tela:=0;
end;
4:begin
Result := 4;//Saldo
//tela:=0;
end;
5:begin
Result := 5;//Saldo
//tela:=0;
end
end;
end;
function limparFormTransferencia():Integer;
begin
frTransferencia.edTransferenciaValor.Text:='';
frTransferencia.edTransferenciaConta.Text:='';
frTransferencia.edTransferenciaAgencia.Text:='';
end;
function limparFormDeposito():Integer;
begin
frDeposito.edDepositoAgencia.Text:='';
frDeposito.edDepositoConta.Text:='';
frDeposito.edDepositoValor.Text:='';
end;
end.