Files
lazarus-ccr/components/rx/trunk/demos/ToolPanel/project1.lpr

19 lines
269 B
ObjectPascal
Raw Normal View History

program project1;
{$mode objfpc}{$H+}
uses
Interfaces, // this includes the LCL widgetset
Forms,
Unit1;
{$R *.res}
begin
Application.Title:='Rx Toolbar test';
Application.Initialize;
Application.CreateForm(TMainForm, MainForm);
Application.Run;
end.