Files

15 lines
323 B
ObjectPascal
Raw Permalink Normal View History

program OLBarDemo;
uses
Forms, Interfaces, LCLVersion,
OLBarMainFormU in 'OLBarMainFormU.pas' {OLBarMainForm};
{$R *.res}
begin
Application.Scaled := True; // Remove this line if Lazarus is older than 1.8
Application.Initialize;
Application.CreateForm(TOLBarMainForm, OLBarMainForm);
Application.Run;
end.