Files
lazarus-ccr/components/rx/Demos/ToolPanel/project1.lpr

17 lines
308 B
ObjectPascal
Raw Normal View History

program project1;
{$mode objfpc}{$H+}
uses
Interfaces, // this includes the LCL widgetset
Forms
{ add your units here }, Unit1, RxNew, AboutUnit;
begin
Application.Initialize;
Application.CreateForm(TMainForm, MainForm);
Application.CreateForm(TAboutForm, AboutForm);
Application.Run;
end.