-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathuCardClientes.pas
More file actions
44 lines (35 loc) · 1.08 KB
/
uCardClientes.pas
File metadata and controls
44 lines (35 loc) · 1.08 KB
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
unit uCardClientes;
interface
uses
System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants,
FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs,
FMX.Controls.Presentation, FMX.StdCtrls, FMX.Objects, FMX.Layouts, FMX.Effects,
IdBaseComponent, IdComponent, IdTCPConnection, IdTCPClient,
IdExplicitTLSClientServerBase, IdMessageClient, IdPOP3;
type
TfrmCardClientes = class(TForm)
LayoutCard: TLayout;
RectangleCard: TRectangle;
Rectangle1: TRectangle;
Circle1: TCircle;
Label1: TLabel;
ShadowEffect1: TShadowEffect;
Label2: TLabel;
ToolBar1: TToolBar;
SpeedButton1: TSpeedButton;
procedure Circle1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
frmCardClientes: TfrmCardClientes;
implementation
{$R *.fmx}
uses uPrincipal, dPrincipal, uFuncoes;
procedure TfrmCardClientes.Circle1Click(Sender: TObject);
begin
fPrincipal.CadastroContatos(Inttostr(Circle1.Tag),Circle1.Hint,'Dados Cliente','');
end;
end.