You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
535 B
20 lines
535 B
program Charge;
|
|
|
|
uses
|
|
Vcl.Forms,
|
|
udtmSystem in 'udtmSystem.pas' {dtmSystem: TDataModule},
|
|
umstCadastro in 'umstCadastro.pas' {mstCadastro},
|
|
umstMaster in 'umstMaster.pas' {mstMaster},
|
|
umstLista in 'umstLista.pas' {mstLista},
|
|
udtmCharge in 'udtmCharge.pas' {dtmCharge: TDataModule},
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.MainFormOnTaskbar := True;
|
|
Application.Title := 'Charge';
|
|
Application.CreateForm(TdtmSystem, dtmSystem);
|
|
Application.CreateForm(TfrmCharge, frmCharge);
|
|
Application.Run;
|
|
end.
|