Componentes.Terceros.RemObj.../official/5.0.23.613/RemObjects SDK for Delphi/Samples/Dispatch Notifier/DispatchNotifierClient.dpr

14 lines
319 B
ObjectPascal

program DispatchNotifierClient;
uses
Forms,
DispatchNotifierClientMain in 'DispatchNotifierClientMain.pas' {DispatchNotifierClientMainForm};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TDispatchNotifierClientMainForm, DispatchNotifierClientMainForm);
Application.Run;
end.