lazarus/components/rtticontrols/examples/exampleprojectgrid1.lpr
mattias e58fafc956 added example for TTIGrid
git-svn-id: trunk@6523 -
2005-01-09 14:51:55 +00:00

16 lines
253 B
ObjectPascal

program ExampleProjectGrid1;
{$mode objfpc}{$H+}
uses
Interfaces, // this includes the LCL widgetset
Forms
{ add your units here }, ExampleGrid1;
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.