Componentes.Terceros.RemObj.../internal/6.0.43.801/1/RemObjects Samples/Data Abstract for Delphi/Old/XSLT/XSLT.dpr
2010-01-29 16:17:43 +00:00

15 lines
250 B
ObjectPascal

program XSLT;
uses
Forms,
XSLTMain in 'XSLTMain.pas' {XSLTMainForm};
{$R *.res}
begin
Application.Initialize;
Application.Title := 'XSLT Sample';
Application.CreateForm(TXSLTMainForm, XSLTMainForm);
Application.Run;
end.