Componentes.Terceros.DevExp.../official/x.30/ExpressMasterView/Demos/Delphi/SelfRef/SelfRef.dpr
2007-12-16 17:06:54 +00:00

14 lines
188 B
ObjectPascal

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