18 lines
370 B
Plaintext
18 lines
370 B
Plaintext
program charityevents;
|
|
|
|
uses
|
|
Vcl.Forms,
|
|
modelviewform in 'modelviewform.pas' {FormModelView},
|
|
myeventdata in 'myeventdata.pas',
|
|
myevents in 'myevents.pas';
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
ReportMemoryLeaksOnShutdown := True;
|
|
Application.Initialize;
|
|
Application.MainFormOnTaskbar := True;
|
|
Application.CreateForm(TFormModelView, FormModelView);
|
|
Application.Run;
|
|
end.
|