15 lines
256 B
ObjectPascal
15 lines
256 B
ObjectPascal
|
|
program CargaEDI;
|
|||
|
|
|
|||
|
|
uses
|
|||
|
|
Forms,
|
|||
|
|
uCargaEDI in 'uCargaEDI.pas' {fCargaEDI};
|
|||
|
|
|
|||
|
|
{$R *.res}
|
|||
|
|
|
|||
|
|
begin
|
|||
|
|
Application.Initialize;
|
|||
|
|
Application.Title := 'Carga autom<6F>tica EDI';
|
|||
|
|
Application.CreateForm(TfCargaEDI, fCargaEDI);
|
|||
|
|
Application.Run;
|
|||
|
|
end.
|