Componentes.Terceros.RemObj.../internal/5.0.35.741/1/RemObjects SDK for Delphi/Samples/Dispatch Notifier/DispatchNotifierClient.dpr
2009-02-28 17:16:16 +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.