delphimvcframework/samples/CustomAuth/CustomAuthClient.dpr

15 lines
248 B
ObjectPascal
Raw Normal View History

2016-09-20 11:19:09 +02:00
program CustomAuthClient;
uses
Vcl.Forms,
MainClientFormU in 'MainClientFormU.pas' {Form7};
{$R *.res}
begin
Application.Initialize;
Application.MainFormOnTaskbar := True;
Application.CreateForm(TForm7, Form7);
Application.Run;
end.