Componentes.Terceros.DevExp.../official/x.38/ExpressMasterView/Demos/Delphi/RunTimeStyles/RuntimeStyles.dpr
2008-08-27 11:56:15 +00:00

14 lines
194 B
ObjectPascal

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