Componentes.Terceros.DevExp.../official/x.38/ExpressMasterView/Demos/Delphi/RunTimeStyles/RuntimeStyles.dpr

14 lines
194 B
ObjectPascal
Raw Normal View History

program RuntimeStyles;
uses
Forms,
main in 'main.pas' {fmMain};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TfmMain, fmMain);
Application.Run;
end.