
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@483 8e941d3f-bd1b-0410-a28a-d453659cc2b4
19 lines
389 B
ObjectPascal
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.
|