Files
lazarus-ccr/components/richview/demo/rvdemo.lpr
jesusr 99f838537c added: richview 0.5.2.3 component
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@73 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2007-02-20 22:47:04 +00:00

19 lines
401 B
ObjectPascal

program rvdemo;
uses
Interfaces,
Forms, OsPrinters,
Unit1 in 'unit1.pas' {Form1},
BackStyl in 'backstyl.pas' {frmBackStyle},
PrintFrm in 'printfrm.pas' {frmPrint}, lazrichview;
{.$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.CreateForm(TfrmBackStyle, frmBackStyle);
Application.CreateForm(TfrmPrint, frmPrint);
Application.Run;
end.