home *** CD-ROM | disk | FTP | other *** search
- {$ifdef Windows}
- {$M 24000, 8192} {Default stack size may be too small}
- {$endif}
-
- program Htmldemo;
- {A program to demonstrate the ThtmlLite component}
-
- uses
- Forms,
- demounit in 'demounit.pas' {Form1},
- LiteAbt in 'LiteAbt.pas' {AboutBox},
- ImgForm in 'ImgForm.pas' {ImageForm},
- FontDlgL in 'FontDlgL.pas' {FontForm},
- Submit in 'Submit.pas' {SubmitForm};
-
- {$ifdef Windows}
- {$R htmldm16.res} {Delphi 1}
- {$else}
- {$R htmldemo32.RES}
- {$endif}
-
- begin
- {$ifndef Windows}
- Application.Initialize;
- {$endif}
- Application.CreateForm(TForm1, Form1);
- Application.CreateForm(TSubmitForm, SubmitForm);
- Application.Run;
- end.
-