delphimvcframework/samples/winecellarclient_withlivebinding/WineCellarClientLiveBinding.dpr

18 lines
425 B
ObjectPascal
Raw Normal View History

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
2017-05-09 23:13:51 +02:00
ReportMemoryLeaksOnShutdown := True;
Application.Initialize;
Application.MainFormOnTaskbar := True;
Application.CreateForm(TForm5, Form5);
Application.Run;
end.