mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-16 16:25:54 +01:00
e6dc5e9370
Improved examples
19 lines
369 B
ObjectPascal
19 lines
369 B
ObjectPascal
program Receiver;
|
|
|
|
uses
|
|
Vcl.Forms,
|
|
ReceiverForm in 'ReceiverForm.pas' {ReceiverMainForm} ,
|
|
ThreadReceiver in 'ThreadReceiver.pas';
|
|
|
|
{$R *.res}
|
|
|
|
|
|
begin
|
|
ReportMemoryLeaksOnShutdown := True;
|
|
Application.Initialize;
|
|
Application.MainFormOnTaskbar := True;
|
|
Application.CreateForm(TReceiverMainForm, ReceiverMainForm);
|
|
Application.Run;
|
|
|
|
end.
|