Componentes.Terceros.DevExp.../official/x.30/ExpressMasterView/Demos/Delphi/RunTimeStyles/RuntimeStyles.dpr
2007-12-16 17:06:54 +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.