root / LicensesMercure / Licenses.dpr @ 1
Historique | Voir | Annoter | Télécharger (680 octets)
1 |
program Licenses;
|
---|---|
2 |
|
3 |
{$STRINGCHECKS OFF}
|
4 |
|
5 |
uses
|
6 |
Forms, |
7 |
UFMenu in 'UFMenu.pas' {FMenu}, |
8 |
UFAjinomoto in 'UFAjinomoto.pas' {FAjinomoto}, |
9 |
UFOrder in 'UFOrder.pas' {FOrder}, |
10 |
UFInvoice in 'UFInvoice.pas' {FInvoice}, |
11 |
UFINRA in 'UFINRA.pas' {FINRA}, |
12 |
UFKeys in 'UFKeys.pas' {FKeys}, |
13 |
UFAnnual in 'UFAnnual.pas' {FAnnual}, |
14 |
UFAgreement in 'UFAgreement.pas' {FAgreement}, |
15 |
UFUSB in 'UFUSB.pas' {FUSB}, |
16 |
UFManual in 'UFManual.pas' {FManual}, |
17 |
UFConnect in 'UFConnect.pas' {FConnect}; |
18 |
|
19 |
{$R *.res}
|
20 |
|
21 |
begin
|
22 |
Application.Initialize; |
23 |
Application.Title := 'Gestion des licences InraPorc';
|
24 |
Application.CreateForm(TFMenu, FMenu); |
25 |
Application.Run; |
26 |
end.
|