Componentes.Terceros.DevExp.../official/x.30/ExpressMasterView/Demos/Delphi/SelfRef/SelfRef.dpr

14 lines
188 B
ObjectPascal
Raw Permalink Normal View History

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