forked from WillianKakihata/SCP
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprjSCP.lpr
More file actions
32 lines (27 loc) · 773 Bytes
/
prjSCP.lpr
File metadata and controls
32 lines (27 loc) · 773 Bytes
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
program prjSCP;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}
cthreads,
{$ENDIF}
{$IFDEF HASAMIGA}
athreads,
{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms, uMenuPrincipal, CadModelo, OpLogin, CadEsqSenha, OpSobre,
CadVendedores, CadFornecedor, CadClientes, CadUsuarios, CadProdutos
{ you can add units after this };
{$R *.res}
begin
RequireDerivedFormResource:=True;
Application.Title:='Sistema de Controle de Produto - SCP';
Application.Scaled:=True;
{$PUSH}{$WARN 5044 OFF}
Application.MainFormOnTaskbar:=True;
{$POP}
Application.Initialize;
Application.CreateForm(TOpLoginF, OpLoginF);
Application.CreateForm(TCadModeloF, CadModeloF);
Application.CreateForm(TMenuPrincipalF, MenuPrincipalF);
Application.Run;
end.