Componentes.Terceros.RemObj.../internal/6.0.43.801/1/RemObjects Samples/RemObjects SDK for Delphi/Dispatch Notifier/DispatchNotifierClient.dpr
2010-01-29 16:17:43 +00:00

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.