Componentes.Terceros.RemObj.../official/5.0.24.615/Data Abstract for Delphi/Samples/XSLT/XSLT.dpr

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.