delphimvcframework/samples/winecellarclient_withlivebinding/WineCellarClientLiveBinding.dpr
2017-05-09 23:14:20 +02:00

18 lines
425 B
ObjectPascal

program WineCellarClientLiveBinding;
uses
Vcl.Forms,
MainFormU in 'MainFormU.pas' {Form5},
MVCFramework.RESTClient in '..\..\sources\MVCFramework.RESTClient.pas',
WinesBO in '..\winecellarserver\WinesBO.pas';
{$R *.res}
begin
ReportMemoryLeaksOnShutdown := True;
Application.Initialize;
Application.MainFormOnTaskbar := True;
Application.CreateForm(TForm5, Form5);
Application.Run;
end.