-
Notifications
You must be signed in to change notification settings - Fork 0
/
U_FrmTelaResultado.pas
49 lines (39 loc) · 1.26 KB
/
U_FrmTelaResultado.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
unit U_FrmTelaResultado;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.ExtCtrls, Vcl.StdCtrls,
FireDAC.Stan.Intf, FireDAC.Stan.Option, FireDAC.Stan.Error, FireDAC.UI.Intf,
FireDAC.Phys.Intf, FireDAC.Stan.Def, FireDAC.Stan.Pool, FireDAC.Stan.Async,
FireDAC.Phys, FireDAC.Phys.FB, FireDAC.Phys.FBDef, FireDAC.VCLUI.Wait,
FireDAC.Stan.Param, FireDAC.DatS, FireDAC.DApt.Intf, FireDAC.DApt, Data.DB,
FireDAC.Comp.DataSet, FireDAC.Comp.Client;
type
TfrmTelaResultado = class(TForm)
Panel1: TPanel;
lbResultado: TLabel;
Label1: TLabel;
btJogarNovamente: TButton;
btVerPlacar: TButton;
btSair: TButton;
procedure btSairClick(Sender: TObject);
procedure btVerPlacarClick(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
frmTelaResultado: TfrmTelaResultado;
implementation
{$R *.dfm}
uses U_FrmPerguntas, U_FrmMenu, U_Placar;
procedure TfrmTelaResultado.btSairClick(Sender: TObject);
begin
Application.Terminate;
end;
procedure TfrmTelaResultado.btVerPlacarClick(Sender: TObject);
begin
U_FrmPlacar.ShowModal;
end;
end.