15 lines
357 B
ObjectPascal
15 lines
357 B
ObjectPascal
|
|
program DynamicRequestClient;
|
||
|
|
|
||
|
|
uses
|
||
|
|
Forms,
|
||
|
|
DynamicRequestClientMain in 'DynamicRequestClientMain.pas' {DynamicRequestClientMainForm};
|
||
|
|
|
||
|
|
{$R *.res}
|
||
|
|
|
||
|
|
begin
|
||
|
|
Application.Initialize;
|
||
|
|
Application.Title := 'Dynamic Request Client';
|
||
|
|
Application.CreateForm(TDynamicRequestClientMainForm, DynamicRequestClientMainForm);
|
||
|
|
Application.Run;
|
||
|
|
end.
|