lazarus-ccr/components/richview/demo/rvdemo.lpr
jesusr d9c175bb6e richview, fixed demo default target
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@483 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2008-06-16 02:48:46 +00:00

19 lines
389 B
ObjectPascal

program rvdemo;
uses
Interfaces,
Forms,
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.