Componentes.Terceros.DevExp.../internal/x.36/1/ExpressPrinting System/Demos/Delphi/StylesDemo/Styles.dpr

14 lines
223 B
ObjectPascal
Raw Normal View History

program Styles;
uses
Forms,
StylesMain in 'StylesMain.pas' {StylesMainForm};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TStylesMainForm, StylesMainForm);
Application.Run;
end.